racerxdl / sms_broadcast.py
0 Lajky
0 Forky
2 Soubory
Naposledy aktivní 5 months 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) |
racerxdl / tbsecp3-dma.c
0 Lajky
0 Forky
2 Soubory
Naposledy aktivní 5 months 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 Lajky
0 Forky
1 Soubory
Naposledy aktivní 5 months 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 |