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 streams | |
| import protobuf | |
| const protoSpec = """ | |
| syntax = "proto3"; | |
| message Example2 { | |
| string field1 = 1; | |
| int32 field2 = 2; | |
| } |
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
| Драйверы MediaTek: | |
| - mt7601u (в ядре с версии 4.2): поддерживает режим ТД, мониторинга и инъекции | |
| чипы: MT7601U, MT7601UN | |
| - mt76 (в ядре с версии 4.19): поддерживает режим ТД, мониторинга и инъекции | |
| чипы: MT7603E, MT7603EN, MT7610E, MT7610EN, MT7610U, MT7610UN, MT7612E, MT7612EN, MT7612U, MT7612UN, MT7615, MT7615E, MT7615N, MT7630E, MT7662E, MT7662EN, MT7628A, MT7628K, MT7628N | |
| Драйверы Ralink: | |
| - r2500usb (в ядре): поддерживает режим ТД, мониторинга и инъекции | |
| чипы: RT2571W, RT2671 | |
| - rt2800usb (в ядре):поддерживает режим ТД, мониторинга и инъекции |
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
| Сборка статичного iw в Alpine: | |
| # Установка базового инструментария для сборки | |
| apk add build-base | |
| mkdir iw_static | |
| cd iw_static/ | |
| wget https://github.com/thom311/libnl/releases/download/libnl3_5_0/libnl-3.5.0.tar.gz | |
| mkdir prefix | |
| tar xvf libnl-3.5.0.tar.gz | |
| cd libnl-3.5.0/ |
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
| #include <stdio.h> /* printf, scanf */ | |
| #include <stdlib.h> /* srand, rand */ | |
| #include <time.h> /* time */ | |
| void manualSeed (void) { | |
| int seed; | |
| printf("Введите seed: "); | |
| fflush(stdout); | |
| scanf("%d", &seed); | |
| srand(seed); |
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
| from os import walkFiles, paramStr, paramCount, tryRemoveFile | |
| import csvtools | |
| from strutils import join, toLowerAscii | |
| import strformat | |
| proc input(prompt: string = ""): string = | |
| stdout.write(prompt) | |
| stdout.flushFile() | |
| result = stdin.readLine() |
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
| # -*- coding: utf-8 -*- | |
| def checksum(pin): | |
| ''' | |
| Standard WPS checksum algorithm. | |
| @pin — A 7 digit pin to calculate the checksum for. | |
| Returns the checksum value. | |
| ''' | |
| accum = 0 | |
| while pin: | |
| accum += (3 * (pin % 10)) |
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
| from strutils import parseInt, split, join | |
| let n = uint8(parseInt(readLine(stdin))) | |
| var x_roads_asphalted: seq[uint8] | |
| var y_roads_asphalted: seq[uint8] | |
| var days: seq[uint8] | |
| var counter: uint8 = 1 | |
| for i in uint8(1)..(n * n): | |
| let t = split(readLine(stdin), ' ') | |
| var x_road = uint8(parseInt(t[0])) |
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 sys | |
| import os | |
| import csv | |
| try: | |
| core_file = sys.argv[1] | |
| except IndexError: | |
| print('Использование: {} файлназначения.csv'.format(sys.argv[0])) | |
| exit(1) |
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 argparse | |
| import csv | |
| from datetime import datetime | |
| if __name__ == '__main__': | |
| table_header = ['IP Address', 'Port', 'Time (ms)', 'Status', | |
| 'Authorization', 'Server name / Realm name / Device type', | |
| 'Radio Off', 'Hidden', 'BSSID', 'ESSID', 'Security', | |
| 'Key', 'WPS PIN', 'LAN IP Address', 'LAN Subnet Mask', | |
| 'WAN IP Address', 'WAN Subnet Mask', 'WAN Gateway', |
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 -*- | |
| from hashlib import pbkdf2_hmac, sha1 | |
| import hmac | |
| import subprocess | |
| essid = input('ESSID: ') | |
| passphrase = input('Passphrase: ') | |
| bssid = input('BSSID: ').lower().replace(':', '').replace('-', '').replace('.', '') | |
| sta_mac = input('Client MAC: ').lower().replace(':', '').replace('-', '').replace('.', '') |