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/python | |
# -*- coding: utf-8 -*- | |
# | |
# <[email protected]> | |
# | |
from SimpleXMLRPCServer import SimpleXMLRPCServer | |
from xmlrpclib import Binary | |
server = SimpleXMLRPCServer(('brutus.com.br', 9589), logRequests=True, allow_none=True) |
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/python | |
# -*- coding: utf-8 -*- | |
# | |
# Kanazuchi <[email protected]> | |
# | |
import os | |
import re | |
for x in [ x for x in os.listdir('.') if '.mp4' in x ]: |
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/python | |
# -*- coding: ISO-8859-15 -*- | |
# | |
# strsprox.py | |
# Autor: Silvio Giunge a.k.a kanazuchi <[email protected]> | |
# | |
import os | |
import re | |
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
<?php | |
$ord_array = array(); | |
foreach ($sort_array as $key => $row) { | |
$ord_array[$key] = $row['field']; | |
} | |
array_multisort($ord_array, SORT_ASC, $sort_array); | |
?> |
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
#!/bin/sh | |
sites="/root/url_list" | |
fdnss="/root/fdnss" | |
[ -f $fdnss ] && /bin/rm $fdnss | |
dnss=`cat /etc/resolv.conf | egrep '^nameserver' | egrep -v '127.0.0.1|8.8.8.8' | awk '{print $2}' | sort -u >> /root/fdnss` | |
for site in `cat $sites`; do | |
g_dns=`dig +short $site 8.8.8.8 | head -1` | |
for dns in `cat $fdnss`; do |
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
#!/bin/sh | |
# | |
# Bruno Antunes | |
# Silvio Giunge - <[email protected]> | |
# | |
if [ "$1" = "" -o "$1" = "-h" -o "$1" = "--help" ] || [ "$1" = "edit" -a "$2" = "" ]; then | |
echo "" | |
echo "Usage: sh block-domains.sh <list|edit> <username>" | |
echo "sh block-domains.sh <list> | List all users." |
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
interface re0 | |
dynamic yes | |
use_sockets yes | |
same_ports yes | |
unregistered_only yes |
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/local/bin/python | |
# -*- coding: UTF-8 -*- | |
# | |
# Author Silvio Giunge <[email protected]> | |
# Display system info using ezio drivers | |
# For FreeBSD 8.1 use to compile the drivers on the version 9.1 | |
# | |
import os |
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/local/bin/python | |
# -*- coding: UTF-8 -*- | |
# | |
# Autor: Silvio Giunge a.k.a kanazuchi | |
# <[email protected]> | |
# | |
import bs4 | |
import requests |
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/python | |
# -*- coding: ISO-8859-15 -*- | |
# | |
# strsprox.py | |
# Autor: Silvio Giunge a.k.a kanazuchi <[email protected]> | |
# | |
import os | |
import re | |
import sys |