Exhaustive list of SPDX (Software Package Data Exchange) licenses: https://spdx.org/licenses/
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 <netinet/in.h> | |
| #include <stdio.h> | |
| int main(int argc, const char *argv[]) { | |
| int i = 1093173256; | |
| int k = htonl(i); | |
| printf("%d %d\n", i, k); | |
| return 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
| # /etc/iptables.rules remove this line | |
| *filter | |
| -A INPUT -i lo -j ACCEPT | |
| -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT | |
| -A INPUT -i enp5s0 -j DROP | |
| -A FORWARD -i enp5s0 -p udp -m udp --dport 34197 -m state --state NEW -j ACCEPT | |
| COMMIT |
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
| 32bit register | |
| r3 0x0A0B0C0D Little endian | |
| | | 0x0D| | 0x0C| | 0x0B| | 0x0A| | | | |
| | Store |0x400| |0x401| |0x402| |0x403| |0x404| memory add. | |
| \/ | |
| memory 0x400 - 0x403 Big endian | |
| | 0x0A| | 0x0B| | 0x0C| | 0x0D| | | | |
| |0x400| |0x401| |0x402| |0x403| |0x404| memory add. | |
Run the TurboTax installer until the error dialog pops up. Click the close button since you can't go any further. Now press WinKey-R and type %TEMP% to go to the temporary folder. Copy the ckz_xxxx folder to the desktop. Select the setup.exe file and press CTRL-C then CTRL-V to make a copy.
Now use radare as follows:
| Command | Description |
|---|---|
| r2 -A -w "setup - copy.exe" | analyze and allow writing |
| axt str.Detected_OS_is_WIN_8_or_above | look for references to this string |
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
| https://github.com/github/training-kit | |
| https://github.com/AdguardTeam/AdGuardHome | |
| https://github.com/TH3xACE/SUDO_KILLER | |
| https://github.com/simbody/simbody | |
| https://github.com/matthieu-hackwitharts/Win32_Offensive_Cheatsheet |
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
| http://git-scm.com/docs | |
| https://github.com/git-tips/tips | |
| https://github.com/sdras/awesome-actions | |
| https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/duplicating-a-repository | |
| https://stackoverflow.com/questions/22906917/how-to-move-git-repository-with-all-branches-from-bitbucket-to-github |
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
| https://gist.github.com/nicolasdao/a7adda51f2f185e8d2700e1573d8a633 |
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
| #https://twitter.com/officialmcafee/status/1397568860082122752 | |
| #https://twitter.com/ahakcil/status/1397888724936105987 | |
| import random | |
| import copy | |
| RST = '\033[0m' | |
| def rand_data(size): | |
| d = [] |