Last active
December 24, 2024 06:31
-
-
Save 0xAungkon/08d4277e7576683d45f6361f6c51eb3b to your computer and use it in GitHub Desktop.
Linux Bash Abstract Wrapper
This file contains hidden or 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
| #!/bin/bash | |
| # example: nmapw (nmap wrapper) , a wrapper that does wrap another bash file over actual program | |
| echo 'Nmap Starting......' | |
| nmap "$@" | |
| echo 'Bye! See You Next Time......' | |
| # wnmap localhost -p- => nmap localhost -p- | |
| # wnmap -A localhost -p 80,8001 => nmap -A localhost -p 80,8001 | |
| # How Does It works? "$@" pass all the parameter to the program we target |
Author
Author
Install The wnmap Script For Testing:
Installation Guide (Paste The Command To Terminal , One by one):
sudo apt install nmapsudo suwget -O /bin/wnmap https://gist.githubusercontent.com/0xAungkon/08d4277e7576683d45f6361f6c51eb3b/raw/db4a295a6732d2ca64c7c5bee8223fce018bb569/wnmap.shchmod +x /bin/wnmapwnmap localhost
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Visualized Screenshot