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
| #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
| Сборка статичного 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
| Драйверы 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
| 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
| import streams | |
| import protobuf | |
| parseProtoFile("test.proto") | |
| var msg = new Example | |
| msg.field1 = @[] | |
| let exampleNested = initExample_ExampleNested() | |
| exampleNested.field1 = initExample_ExampleNested_ExampleNested2(field1 = "Test", field2 = @[]) | |
| let exampleNested3 = initExample_ExampleNested_ExampleNested2_ExampleNested3(field1 = "Test") |
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 macros import error, hint | |
| from os import `/`, splitFile | |
| import strutils | |
| import distros | |
| when defined(release): | |
| switch("checks", "off") | |
| switch("assertions", "off") | |
| switch("debuginfo", "off") | |
| switch("stackTrace", "off") |
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 subprocess | |
| import sys | |
| import re | |
| BSS_PATTERN = re.compile(r'BSS (\S+)( )?\(on \w+\)') | |
| if __name__ == '__main__': | |
| if len(sys.argv) != 3: | |
| print(f"Usage: {sys.argv[0]} <interface> <bssid>") |
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
| diff --git a/Makefile b/Makefile | |
| index 8265d5e..00eebe0 100644 | |
| --- a/Makefile | |
| +++ b/Makefile | |
| @@ -49,8 +49,8 @@ endif | |
| # intended environment, so it make break in the future. | |
| ifneq (, $(findstring mingw, $(SYS))) | |
| INCLUDES = -Ivs10/include | |
| -LIBS = -L vs10/lib -lIPHLPAPI -lWs2_32 | |
| -FLAGS2 = -march=i686 |
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 subprocess | |
| import sys | |
| import re | |
| import codecs | |
| def ifaceUp(iface, down=False): | |
| if down: | |
| action = 'down' |