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 | |
| #coding:utf-8 | |
| #require bitstring | |
| import bitstring | |
| import math | |
| import sys | |
| filename = sys.argv[1] | |
| packet_length = 188 |
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
| import os.path | |
| filename = input('CSV filename: ') | |
| data = open(filename).readlines() | |
| name, ext = os.path.splitext(filename) | |
| out = open(name+'_ok'+ext, 'w') | |
| outdata = '' | |
| for row in data: | |
| outrow = row.replace('\n','').replace('\r','').replace('\'','').replace('"','') |
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 multiprocessing | |
| import subprocess | |
| accounts =[ | |
| {'id':'[email protected]', 'pass':'password'}, | |
| {'id':'[email protected]', 'pass':'password'}, | |
| ] | |
| def download(account, download_urls): |
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 | |
| # -*- coding: utf-8 -*- | |
| # | |
| # Copyright (c) 2009 Keiichiro Nagano | |
| # Copyright (c) 2009 Kimura Youichi | |
| # Copyright (c) 2006-2008 Ricardo Garcia Gonzalez | |
| # Copyright (c) 2008 Ying-Chun Liu (PaulLiu) | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a | |
| # copy of this software and associated documentation files (the "Software"), |
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 | |
| if [ $# -eq 3 ];then | |
| VIDEOURI=$1 | |
| USER=$2 | |
| PASS=$3 | |
| else | |
| VIDEOURI=$(zenity --entry --title "URI入力 - nicomp3" --text "URIを入力してください") | |
| USER='[email protected]' | |
| PASS='password' |
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 struct | |
| from sys import argv | |
| UTF8_prior = False | |
| #FILENAME = input('img name?: ') | |
| FILENAME = argv[1] | |
| def getLFN(ldir_wholename): | |
| ldir_wholename = ldir_wholename.replace(b'\xff\xff',b'') #remove padding |
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
| import struct | |
| FILENAME = 'testimg1' | |
| data = open(FILENAME, 'rb').read() | |
| dir_start = 1536 #0x600 | |
| entry_size = 32 | |
| while True: | |
| name, attr = struct.unpack_from(b'> 11s c', data, dir_start) | |
| if name==b'\x00'*11: |
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
| filename = 'TEST TXT' | |
| total = 0 | |
| for newchar in filename: | |
| #rotate(一番右のビットは一番左に) | |
| total = ((total & 1) << 7) + (total >> 1) | |
| #add | |
| total += ord(newchar) | |
| #桁溢れ防止 | |
| total = total & 0xFF |
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 | |
| from telnetlib import Telnet | |
| from sys import argv | |
| from time import sleep | |
| prompt1 = b"IX2015# " | |
| prompt2 = b"IX2015(config)# " | |
| command1 = b"show uptime\r" | |
| command2 = b"show arp entry\r" |
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 | |
| #ex) $ ix_uptime.py 192.168.0.1 username password | |
| import getpass | |
| from telnetlib import Telnet | |
| from sys import argv | |
| header = "IX2015# " | |
| command = "show uptime\r" | |
| #HOST = input("Enter your IX\'s IP addr: ") | |
| #user = input("Enter your remote account: ").encode('ascii') |