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
#!/usr/local/bin/python | |
# -*- coding: utf-8 -*- | |
# @kanazuchi_ <[email protected]> | |
import re | |
import sys | |
import time | |
import Tkinter | |
import argparse | |
import requests |
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
egrep -l '\$error[(\ +)?\=].*[^\)]\;' * --color | xargs -J % sed -e 's/\([\$error\ \=\ ]dgettext.*[^\;]\)/ syslog\(LOG\_NOTICE\, \1\)/g' -i.bak % |
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
bird> show ? | |
show interfaces Show network interfaces | |
show ospf ... Show information about OSPF protocol | |
show protocols [<protocol> | "<pattern>"] Show routing protocols | |
show route ... Show routing table | |
show static [<name>] Show details of static protocol | |
show status Show router status | |
bird> show ospf ? | |
show ospf [<name>] Show information about OSPF protocol XXX |
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 <stdlib.h> | |
#include <curl/curl.h> | |
#include <unistd.h> | |
#define TIMEOUT 20 | |
// Function prototypes | |
void upload_test(const char *, const char *); | |
void download_test(const char *); | |
void usage(void); |
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
#!/usr/local/bin/python | |
# -*- coding: utf-8 -*- | |
# | |
# Get files for squid33 on packages server of the pfSense | |
# Author: Silvio Giunge a.k.a Kanazuchi | |
# 1410180880 | |
# a2FuYXp1Y2hpQGFsdm9saXZyZS5jb20= | |
# | |
import os |
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
#!/bin/sh | |
# | |
# Author: Silvio Giunge a.k.a Kanazuchi | |
# 1410180880 | |
# a2FuYXp1Y2hpQGFsdm9saXZyZS5jb20=# Install packages for webfilter | |
# | |
SAMBAPATH="/var/run/samba4" | |
CONFPATH="/usr/local/etc" | |
SQUIDPATH="/usr/local/etc/squid" |
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
#!/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 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 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 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 |