- Recon
- Find vuln
- Exploit
- Document it
Unicornscans in cli, nmap in msfconsole to help store loot in database.
| /** | |
| * Created by Umcookies on a potarto. | |
| */ | |
| API.on(API.chatLog("Use /background to set your new background and /player /vote /join /avatar to change the position of the respective UI elements", 1)); | |
| API.on(API.chatLog("You can use /move if any UI part's move, it wont prompt for any inputs. You can also use /keeppos which will check every second if a UI element has moved (recommended)")); | |
| API.on(API.CHAT_COMMAND, awesomethings); | |
| //variables | |
| var backgroundurl = "https://cdn.plug.dj/_/static/images/community/background.ae45269504d5329fb78e47e9bd4be2da0698f284.jpg"; | |
| var playerWhereX = document.getElementById("playback").style.left.replace("px", ""); | |
| var playerWhereY = "54"; |
| // 10*8 LED matrix with 4017 IC | |
| // LED maze commented | |
| #include <Servo.h> | |
| int clock = 9;// goes to the clock pin on the 4017 IC | |
| int reset = 8;//goes to the reset pin on the 4017 IC | |
| int analogIn = A1; | |
| int value = 0; |
| <html style="width:100%; height:100%; overflow:hidden"> | |
| <body style="width:100%; height:100%; overflow:hidden; margin:0"> | |
| <script> | |
| function main() { | |
| if (WS.scriptVersion(1)) return; | |
| WS.subscribe("gesture:pebble:singleClick:UP", function () { | |
| WS.control('SWIPE_LEFT'); | |
| }); | |
| WS.subscribe("gesture:pebble:singleClick:DOWN", function () { | |
| WS.control('SWIPE_RIGHT'); |
| /* | |
| - Uses system calls rather than <stdio.h> to read standard input and write standard output | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <unistd.h> // To use read and write | |
| #include <sys/stat.h> // To use fstat() | |
| // Global declaration to count the number of comparisons throughout the program |
| /* $ gcc cve_2016_0728.c -o cve_2016_0728 -lkeyutils -Wall */ | |
| /* $ ./cve_2016_072 PP_KEY */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <sys/types.h> | |
| #include <keyutils.h> | |
| #include <unistd.h> | |
| #include <time.h> |
| def I(s): | |
| val = 0 | |
| for i in range(len(s)): | |
| digit = ord(s[len(s) - i - 1]) | |
| val <<= 8 | |
| val |= digit | |
| return val | |
| def Sn(i, length): | |
| s = '' |
| CC=clang-3.8 | |
| CFLAGS=-Wall -Wextra -std=gnu11 -lpthread -O0 | |
| all: primary | |
| build: primary | |
| primary: primary.c | |
| $(CC) primary.c $(CFLAGS) -o primary -ltcmalloc |
| Disa.Framework.Shared/Emoji.cs:304: new Map("white smiling face", "263a", "e6f0", "e4fb", "e414", "fe336", "\u263a"), | |
| Disa.Framework.Shared/Emoji.cs:366: new Map("mount fuji", "1f5fb", "e740", "e5bd", "e03b", "fe4c3", "\ud83d\uddfb"), | |
| Disa.Framework.Shared/Emoji.cs:420: new Map("electric torch", "1f526", "e6fb", "e583", "-", "fe4fb", "\ud83d\udd26"), | |
| Disa.Framework.Shared/Emoji.cs:527: new Map("running shirt with sash", "1f3bd", "e652", "-", "-", "fe7d0", "\ud83c\udfbd"), | |
| Disa.Framework.Shared/Emoji.cs:530: new Map("tennis racquet and ball", "1f3be", "e655", "e4b7", "e015", "fe7d3", "\ud83c\udfbe"), | |
| Disa.Framework.Shared/Emoji.cs:532: new Map("ski and ski boot", "1f3bf", "e657", "eaac", "e013", "fe7d5", "\ud83c\udfbf"), | |
| Disa.Framework.Shared/Emoji.cs:569: new Map("tent", "26fa", "-", "e5d0", "e122", "fe7fb", "\u26fa"), | |
| Disa.Framework.Shared/Emoji.cs:587: new Map("slot machine", "1f3b0", "-", |
| // ==UserScript== | |
| // @name Manga OnlineViewer | |
| // @description Shows all pages at once in online view. MangaFox, MangaReader/MangaPanda, MangaStream, MangaInn, AnyManga, AnimeA, MangaHere, MangaShare, Batoto, MangaDevil, MangaCow, MangaChapter, 7manga, MangaPirate.net and MangaBee/OneManga.me manga sites. Fakku, HBrowse, Hentai2Read and Doujin-moe Hentai sites. | |
| // @version 8.16 | |
| // @date 2014-04-29 | |
| // @author Tago | |
| // @grant GM_getValue | |
| // @grant GM_setValue | |
| // @namespace https://userscripts-mirror.org/users/57679 | |
| // @source https://userscripts-mirror.org/scripts/show/139639 |