racerxdl / sms_broadcast.py
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 month ago
Osmo Nitb Scripts
| 1 | #!/usr/bin/env python |
| 2 | import telnetlib |
| 3 | import sys |
| 4 | import random |
| 5 | import time |
| 6 | |
| 7 | imsi = 999999999999999 |
| 8 | |
| 9 | def check_extension(extension): |
| 10 | conn.write(b"show subscriber extension %s\n" % extension) |
Последняя активность 1 month ago
A ancient code that I did when I was at university. A friend reminded about it. It was posted ib my tumblr: http://letshackit.energylabs.com.br/?fbclid=IwAR2-rzRJeC39HP48EPAk4EvLQfe_LKgbQMcQIiHjrYnqMRsYyPXw_yNAX1k
| 1 | #!/usr/bin/python |
| 2 | |
| 3 | from sys import stdout |
| 4 | from PySFML import * |
| 5 | from random import random |
| 6 | import time as timec |
| 7 | import copy |
| 8 | |
| 9 | ''' |
| 10 | _ _ _ _ _ _ _ _ |
racerxdl / tbsecp3-dma.c
0 лайк(-ов)
0 форк(-ов)
2 файл(-ов)
Последняя активность 1 month ago
Raw Frame Passthrough from TBS6903 board by faking a TS Frame.
| 1 | /* |
| 2 | TBS ECP3 FPGA based cards PCIe driver |
| 3 | |
| 4 | This program is free software: you can redistribute it and/or modify |
| 5 | it under the terms of the GNU General Public License as published by |
| 6 | the Free Software Foundation, either version 3 of the License, or |
| 7 | (at your option) any later version. |
| 8 | |
| 9 | This program is distributed in the hope that it will be useful, |
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
racerxdl / bash.generate.random.alphanumeric.string.sh
0 лайк(-ов)
0 форк(-ов)
1 файл(-ов)
Последняя активность 1 month ago
shell/bash generate random alphanumeric string
| 1 | #!/bin/bash |
| 2 | # bash generate random alphanumeric string |
| 3 | # |
| 4 | |
| 5 | # bash generate random 32 character alphanumeric string (upper and lowercase) and |
| 6 | NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) |
| 7 | |
| 8 | # bash generate random 32 character alphanumeric string (lowercase only) |
| 9 | cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 |