$ cat code_audit.yar
rule PHP_INFOLEAK
{
strings:
$leak1 = /phpinfo\s?\(|show_source\s?\(|highlight_file\s?\(/
condition:
$leak1
}
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
| #!/usr/bin/env python3 | |
| import argparse | |
| import threading | |
| from threading import Thread | |
| from scapy.all import * | |
| import logging | |
| import socket | |
| import chardet | |
| def listen(): |
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
| /* cargo.toml | |
| [package] | |
| name = "clicker" | |
| version = "0.1.0" | |
| authors = ["dustyfresh"] | |
| [dependencies] | |
| keystroke = "*" | |
| kernel32-sys = "*" | |
| user32-sys = "*" |
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
| > db.payloads.find({codename: 'shrill-bread'}).pretty() | |
| { | |
| "_id" : ObjectId("58a7b6935bfab60010aaf5de"), | |
| "requests" : { | |
| "1427a2c8-f585-11e6-b9ae-0242ac11000d" : { | |
| "attack_meta" : { | |
| "target_type" : "wp-login", | |
| "target_name" : "unknown" | |
| }, | |
| "time" : "1487386259", |
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
| <html> | |
| <head> | |
| <style> | |
| @import url(//fontlibrary.org/face/effects-eighty); | |
| $font: 'EffectsEighty'; | |
| * { | |
| -webkit-font-smoothing: antialiased; | |
| overflow: hidden; | |
| } |
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
| f0VMRgIBAQAAAAAAAAAAAAIAPgABAAAAgClAAAAAAABAAAAAAAAAAFh8BgAAAAAAAAAAAEAAOAAIAEAAHAAbAAYAAAAFAAAAQAAAAAAAAABAAEAAAAAAAEAAQAAAAAAAwAEAAAAAAADAAQAAAAAAAAgAAAAAAAAAAwAAAAQAAAAAAgAAAAAAAAACQAAAAAAAAAJAAAAAAAAcAAAAAAAAABwAAAAAAAAAAQAAAAAAAAABAAAABQAAAAAAAAAAAAAAAABAAAAAAAAAAEAAAAAAAIFtBgAAAAAAgW0GAAAAAAAAACAAAAAAAAEAAAAGAAAAAHAGAAAAAAAAcGYAAAAAAABwZgAAAAAAUAsAAAAAAADASwAAAAAAAAAAIAAAAAAAAgAAAAYAAABQcAYAAAAAAFBwZgAAAAAAUHBmAAAAAAAgAgAAAAAAACACAAAAAAAACAAAAAAAAAAEAAAABAAAABwCAAAAAAAAHAJAAAAAAAAcAkAAAAAAAEQAAAAAAAAARAAAAAAAAAAEAAAAAAAAAFDldGQEAAAAAIUFAAAAAAAAhUUAAAAAAACFRQAAAAAABBwAAAAAAAAEHAAAAAAAAAQAAAAAAAAAUeV0ZAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAvbGliNjQvbGQtbGludXgteDg2LTY0LnNvLjIABAAAABAAAAABAAAAR05VAAAAAAACAAAABgAAACAAAAAEAAAAFAAAAAMAAABHTlUAovJBjZFagUEcTkKG0C0Zd0rP/gsDAAAAdQAAAAEAAAAGAAAAuEEgIOBBEAN1AAAAeQAAAH0AAADIgQrS+OGlbJxjvcUpHYwcZlVhECYRlq7uED+eOfKLHETh6A55SWu2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOIDAAASAAAAAAAAAAAAAAAAAAAAAAAAAPYDAAASAAAAAAAAAAAAAAAAAAAAAAAAAAUEAAASAAAA |
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
| #!/usr/bin/env python | |
| import time | |
| from splinter import Browser | |
| from faker import Faker | |
| import random | |
| from stem import Signal | |
| from stem.control import Controller | |
| from fake_useragent import UserAgent | |
| class Reggit(): |
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
| #!/usr/bin/env python | |
| ''' | |
| Script to log the PastaPass.com drop | |
| ''' | |
| import json | |
| import requests | |
| import time | |
| import datetime | |
| import sys |
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
| # Conky settings # | |
| background yes | |
| update_interval 1 | |
| double_buffer yes | |
| no_buffers yes | |
| imlib_cache_size 10 | |
| # Window specifications # | |
| gap_x 0 | |
| gap_y 0 |
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
| # https://baraktawily.blogspot.fr/2018/02/how-to-dos-29-of-world-wide-websites.html | |
| # https://wpvulndb.com/vulnerabilities/9021 | |
| location ~* ^/wp-admin/load-scripts\.php$ { | |
| if ( $query_string ~* "^.{1024,}$" ) { | |
| return 444; | |
| } | |
| } |