This file contains 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
appendlist([], X, X). | |
appendlist([T|H], X, [T|L]) :- appendlist(H, X, L). | |
permutation([], []). | |
permutation([X], [X]) :-!. | |
permutation([T|H], X) :- permutation(H, H1), appendlist(L1, L2, H1), appendlist(L1, [T], X1), appendlist(X1, L2, X). |
This file contains 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
gcd(0, X, X) :-!. | |
gcd(X, 0, X) :-!. | |
gcd(X, X, X) :-!. | |
gcd(M, N, X) :- N>M, Y is N-M, gcd(M, Y, X). | |
gcd(M, N, X) :- N<M, Y is M-N, gcd(Y, N, X). |
This file contains 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
ackermann(0,N,X) :- X is N+1. | |
ackermann(M, 0, X) :- M>0, M1 is M-1, ackermann(M1, 1, X). | |
ackermann(M, N, X) :- M>0, N>0, M1 is M-1, N1 is N-1, ackermann(M, N1, X1), ackermann(M1, X1, X). |
This file contains 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
12345678910 | |
123-567-910 | |
.data:00402348 byte_402348 db 31h ; DATA XREF: sub_401111+19Do | |
.data:00402348 ; sub_401111:loc_4012E3w | |
.data:00402348 ; sub_401111+1DAo | |
.data:00402349 db 33h ; 3 | |
.data:0040234A db 34h ; 4 | |
.data:0040234B *byte_40234B db 42h ; DATA XREF: sub_401111+1ADr |
This file contains 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://rcejunk.blogspot.com/ | |
http://www.arteam.accessroot.com/ | |
http://www.reversing.be/ | |
http://www.crackmes.de/ | |
http://www.cracklab.ru/ | |
http://www.cryptopp.com/ | |
http://www.alpertron.com.ar/DILOG.HTM | |
http://drizz.has.it/ | |
http://www.exetools.com/ | |
http://htbteam.net/ |
This file contains 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
Tasks :: hack you too | |
http://hackyou.ctf.su/tasks/keygen_me | |
SHA256: 493a6ca5f9a909a4fe0687ea6c2682438c29406b0ad1e774a30020acb6e1c887 | |
SHA1: 1fb5e902883d203624b242affcc6ca15e9bcb4b5 | |
MD5: 987cff478289582011e700d3c22d3b51 | |
Breakpoints: | |
Abs 0xD61258 Break | |
Abs 0xD612A6 Break |
This file contains 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
Disable third-party cookies in Firefox to stop some types of tracking by advertisers | Firefox Help | |
http://support.mozilla.org/en-US/kb/disable-third-party-cookies | |
Note: | |
Disabling third-party cookies in Firefox can stop some types of tracking by advertisers, but not all. |
This file contains 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
How do I turn on the Do-not-track feature? | Firefox Help | |
http://support.mozilla.org/en-US/kb/how-do-i-turn-do-not-track-feature | |
Note: | |
When you turn on the Do-not-track feature, Firefox tells every website you visit (as well as their advertisers and other content providers) that you don't want your browsing behavior tracked. Honoring this setting is voluntary — individual websites are not required to respect it. |
This file contains 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
MAEC - Releases | |
http://maec.mitre.org/language/version3.0/ | |
This file contains 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://crackmes.de/users/pulsar_tr/pulsar_crackme_very_very_easy/solutions/zombie8/browse/solution.txt | |
************************************ | |
Target: Pulsar Crackme (Level 0) by PuLsAr | |
Protection: None | |
Create Date: Agust 27th 2004 | |
Reverse Type: Serial | |
Author's Comment: This is very very easy crackme for NewBie's. | |
************************************ |