Página 1 de 1

SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 17 May 2019 20:37
por CHACKAL
Hola amigos.

Tal vez alguno de ustedes ha visto algo similar, o conoce del tema.

Hace un tiempo me tope con una USB que traía un software hecho con AMS, la cosa es que tu podías usarlo, pero la carpeta "Autoplay" que contenía los archivos, estaba bloqueada, no podías abrirla, copiarla, moverla o eliminarla.

No obstante, al abrir el .exe, este mostraba archivos (PDF) que estaban dentro de esta carpeta.

Hoy tengo un proyecto en mente y quisiera saber si alguno de ustedes sabe o conoce sobre como poder lograr hacer esto.

Gracias :D

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 19 May 2019 12:20
por Pabloko
se establecen permisos de acceso, si no recuerdo mal, el tercer metodo de proteccion de @geneus usaba este sistema con un girito ya que ademas se hacia invisible, realmente es una combinacion de atributos facilmente eludible.

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 23 May 2019 21:28
por CHACKAL
Estoy tratando de hacer algo similar, pero sabes o tendras el enlace a la mano, de como poder acceder solamente con la aplicacion en AMS asignandole la seguridad, pero solo para AMS

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 23 May 2019 23:45
por dripro
Folder Locked Demo with Plugin

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 24 May 2019 02:58
por Agotaras123
muy buen plugin, tiene una excelente función

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 24 May 2019 14:43
por usamakey
a great plugin tnks bro :demo: :demo:

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 25 May 2022 17:39
por ElSicker12
gracias

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 09 Jul 2022 23:52
por luasqlite
local nComando = "";
local x = (RadioButton.GetChecked("Establecer-Atributos")) and "+" or "-";

if CheckBox.GetChecked("Solo-Lectura") then
  nComando = nComando .. x .."R ";
end

if CheckBox.GetChecked("Del-Sistema") then
  nComando = nComando .. x .."S ";
end

if CheckBox.GetChecked("Oculto") then
  nComando = nComando .. x .."H ";
end

if CheckBox.GetChecked("En-Carpetas") then
  nComando = nComando .."\"".. nFile .."\\*.*\" /S /D";
else
  nComando = nComando .."\"".. nFile .."\"";
end

if nComando ~= "\"".. nFile .."\"" and nComando ~= "\"".. nFile .."\\*.*\" /S /D" then
  nComando = "ATTRIB ".. nComando;
  Debug.ShowWindow(true);
  Debug.Clear();
  Debug.Print(nComando .."\r\n\r\n");
  a = CmdUnit.Execute(nComando, 1, 0, true, true);
  
  if a ~= nil then
    if a.Error ~= "" then
      Debug.Print(a.Error)
    elseif a.Output ~= "" then
      Debug.Print(a.Output)
    else
      Debug.Print("Comando completado...")
    end
  end
end

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 10 Jul 2022 09:42
por usamakey








Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 18 Ene 2023 20:30
por sistemci1988
thank you

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 18 Ene 2023 20:35
por sistemci1988
thank you

Re: SEGURIDAD ACCESO CARPETA AUTOPLAY

Publicado: 23 Abr 2024 08:19
por user_foro
Me interesa aprender esto... Quién me enseña?