Jump to content

agilebit

Members
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

1,071 profile views

agilebit's Achievements

Newbie

Newbie (1/14)

  1. i have the same problem, its definitely the script. Were you able to figure out what was wrong?
  2. The online payload generator creates a function inside all its scripts to convert the files to .zip, however when i load the inject.bin file onto the ducky and then plug it into the 'victim' machine, the red light flashes once and stops. thats it. However, when I remove the function from the script, everything works great. How can i fix this? I've attached the problem script code below: STRING function copy-ToZip($fileSaveDir){ ENTER STRING $srcdir = $fileSaveDir ENTER STRING $zipFile = 'C:\Users\Report.zip' ENTER STRING if(-not (test-path($zipFile))) { ENTER STRING set-content $zipFile ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18)) ENTER STRING (dir $zipFile).IsReadOnly = $false} ENTER STRING $shellApplication = new-object -com shell.application ENTER STRING $zipPackage = $shellApplication.NameSpace($zipFile) ENTER STRING $files = Get-ChildItem -Path $srcdir ENTER STRING foreach($file in $files) { ENTER STRING $zipPackage.CopyHere($file.FullName) ENTER STRING while($zipPackage.Items().Item($file.name) -eq $null){ ENTER STRING Start-sleep -seconds 1 }}} ENTER STRING copy-ToZip($fileSaveDir)
  3. Anyone else having an issue where the duck stops working after loading a script from this site? Im using c_duck_v2.1 and when i load the inject.bin onto the ducky and remove it to plug into the 'victim' machine. it flashes red once and then nothing happens. What seems to be the issue?
  4. I was able to access the old duck toolkit site a few days ago, and now its not working? Anyone know whats wrong? I would love to get my hands on the scripts posted on this site
  5. I have been given a USB Rubber Ducky and a LAN Turtle to use at my disposal for a very large project. I am given free reign over what I can do with these two devices, however, I am not very creative when it comes to ideas. Any suggestions from the community on how to tie these two together for a large project? I am fairly well versed with networks and network security in general.
×
×
  • Create New...