Questions tagged as 'seguridad'

3
answers

Android App Security

I am finishing the 1st app that I have developed, which handles sensitive data and any modification or alteration of the data or the handling thereof can cause great damage to the infrastructure of the company. I'm afraid that Apps of the typ...
asked by 14.09.2017 / 18:37
1
answer

Application Security AngularJS

I am developing my web application with angularjs, previously I worked with angularjs on Ionic. In the mobile applications I used an encryption plugin that impeded being able to see the source code and with that I passed security. However, this...
asked by 01.12.2017 / 14:45
1
answer

How to avoid SQL injection in this Php code and create MYSQL queues? [duplicate]

I have this code in a system that I am developing, it works but I know that I have to put security in it and also leave it to work in the long term, for which I would like to know how to prevent the database from falling down, to several users...
asked by 11.08.2017 / 01:20
1
answer

Give read / write permissions to an applet

Good, I have a mini-project to which I would like to give special permission to my applet to read a file that is inside the server that contains it. I have seen that there are signatures to authenticate the security of the application and run...
asked by 22.07.2016 / 05:44
1
answer

Security deploy API Laravel

I have an app made in Laravel only to consume in REST but how do I do it so that there are not public files and sensitive routes like / storage or composer.json until .env? What good practices do you recommend, if .htaccess is a good idea or not...
asked by 13.04.2018 / 00:36
2
answers

"Private mode" storage of Photos

Well I want to take a Photo and save it without the photo being shown from the gallery. this is the code I use: File MiFotoTemporal = new File(RUTAFOTO+ NOMBREFOTO); MiFotoTemporal.createNewFile(); Uri uri = Uri.fromFile(MiFotoTemporal); Inten...
asked by 11.10.2017 / 19:04
1
answer

Is it dangerous to expose my Firebase API KEY in Web project with the Javascript SDK? How could I protect it?

This is the code that indicates Firebase to configure a Web App that can read Real Time Database data with the Javascript SDK: // Set the configuration for your app // TODO: Replace with your project's config object var config = {...
asked by 12.02.2018 / 14:09
1
answer

Is it possible to 'hash' to $ x-variable?

Hi, I would like to know if it is possible to do the following: $id_user = $_POST['id_user']; $nivel_auth = $_POST['nivel']; $hash_nivel = hash($nivel_auth); $con = "INSERT INTO usuario (nivel) VALUES ($hash_nivel) WHERE id_user=$id_user;...
asked by 29.01.2018 / 19:37
1
answer

Problem in symfony security relationship

Hello I have a user can have one or more certificates and a certificate belongs only to a user this is the user entity namespace AppBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Security\Core\User\UserInterface; /*...
asked by 03.02.2017 / 03:14
1
answer

How to redirect to the root directory when accessing a directory

Good, I have a problem, I'm making a page and when you enter a directory, load a page which shows all the files or directories contained in the current directory. How can I redirect the user to the home page and prevent the user from vi...
asked by 18.08.2016 / 03:16