-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomp-sci.html
1746 lines (1658 loc) · 135 KB
/
comp-sci.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!--<meta name="viewport" content="width=device-width, initial-scale=1">-->
<style type="text/css">
/* Center the loader */
#loader {
position: fixed !important;
/* display: -webkit-flexbox !important;
display: -ms-flexbox !important;
display: -webkit-flex !important;
display: flex !important;
-webkit-flex-align: center !important;
-ms-flex-align: center !important;
-webkit-align-items: center !important;
align-items: center !important;
justify-content: center !important; */
left: 50% !important;
top: 50% !important;
z-index: 1;
width: 150px;
height: 150px;
margin: -75px 0px 0px -75px;
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 120px;
height: 120px;
/* -moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%); */
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Add animation to "page content" */
.animate-bottom {
position: relative !important;
-webkit-animation-name: animatebottom;
-webkit-animation-duration: 1s;
animation-name: animatebottom;
animation-duration: 1s
}
@-webkit-keyframes animatebottom {
from { bottom:-100px; opacity:0 }
to { bottom:0px; opacity:1 }
}
@keyframes animatebottom {
from{ bottom:-100px; opacity:0 }
to{ bottom:0; opacity:1 }
}
#myDiv {
display: none;
text-align: left; /* center */
}
</style>
<title>BlackSun RF™ Computer Science [Lunatic Labs II]</title>
<!--<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
.collapsible {
background-color: #777;
color: white;
cursor: pointer;
/* padding: 18px; */
width: 80%;
border: none;
text-align: left;
outline: none;
font-size: 7px; /* 15px */
}
.active, .collapsible:hover {
background-color: #555;
}
.collapsible:after {
content: '\002B';
color: #30394a; /* #30394a white */
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.content {
padding: 0 18px;
max-height: 0;
overflow: auto;
transition: max-height 0.2s ease-out;
background-color: #30394a; /* #30394a #f1f1f1 */
}
</style>-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en-us" />
<meta name="keywords" content="comp sci, philosophy, writing, newssource" />
<meta name="description" content="The coolest fansite\ script source on the web... Find almost anything _interesting_ in here..." />
<meta content="Shadow Company" name="author" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="nuke-ice.css" />
<script type="text/javascript" src="basiccalendar.js"></script>
<style type="text/css">
.kisser {
position: absolute;
z-index: 1000;
top: 0;
left: 0;
visibility: hidden;
}
</style>
<script language="JavaScript1.2" type="text/JavaScript">
//Kissing trail- By dij8 ([email protected])
//Modified by Dynamic Drive for bug fixes
//Visit http://www.dynamicdrive.com for this script
kisserCount = 15 //maximum number of images on screen at one time
curKisser = 0 //the last image DIV to be displayed (used for timer)
kissDelay = 1000 //duration images stay on screen (in milliseconds)
kissSpacer = 50 //distance to move mouse b4 next heart appears
theimage = "lips_small.gif" //the 1st image to be displayed
theimage2 = "small_heart.gif" //the 2nd image to be displayed
//Browser checking and syntax variables
var docLayers = (document.layers) ? true:false;
var docId = (document.getElementById) ? true:false;
var docAll = (document.all) ? true:false;
var docbitK = (docLayers) ? "document.layers['":(docId) ? "document.getElementById('":(docAll) ? "document.all['":"document."
var docbitendK = (docLayers) ? "']":(docId) ? "')":(docAll) ? "']":""
var stylebitK = (docLayers) ? "":".style"
var showbitK = (docLayers) ? "show":"visible"
var hidebitK = (docLayers) ? "hide":"hidden"
var ns6=document.getElementById&&!document.all
//Variables used in script
var posX, posY, lastX, lastY, kisserCount, curKisser, kissDelay, kissSpacer, theimage
lastX = 0
lastY = 0
//Collection of functions to get mouse position and place the images
function doKisser(e) {
posX = getMouseXPos(e)
posY = getMouseYPos(e)
if (posX>(lastX+kissSpacer)||posX<(lastX-kissSpacer)||posY>(lastY+kissSpacer)||posY<(lastY-kissSpacer)) {
showKisser(posX,posY)
lastX = posX
lastY = posY
}
}
// Get the horizontal position of the mouse
function getMouseXPos(e) {
if (document.layers||ns6) {
return parseInt(e.pageX+10)
} else {
return (parseInt(event.clientX+10) + parseInt(document.body.scrollLeft))
}
}
// Get the vartical position of the mouse
function getMouseYPos(e) {
if (document.layers||ns6) {
return parseInt(e.pageY)
} else {
return (parseInt(event.clientY) + parseInt(document.body.scrollTop))
}
}
//Place the image and start timer so that it disappears after a period of time
function showKisser(x,y) {
var processedx=ns6? Math.min(x,window.innerWidth-75) : docAll? Math.min(x,document.body.clientWidth-55) : x
if (curKisser >= kisserCount) {curKisser = 0}
eval(docbitK + "kisser" + curKisser + docbitendK + stylebitK).left = processedx + 'px'
eval(docbitK + "kisser" + curKisser + docbitendK + stylebitK).top = y + 'px'
eval(docbitK + "kisser" + curKisser + docbitendK + stylebitK + ".visibility = '" + showbitK + "'")
if (eval("typeof(kissDelay" + curKisser + ")")=="number") {
eval("clearTimeout(kissDelay" + curKisser + ")")
}
eval("kissDelay" + curKisser + " = setTimeout('hideKisser(" + curKisser + ")',kissDelay)")
curKisser += 1
}
//Make the image disappear
function hideKisser(knum) {
eval(docbitK + "kisser" + knum + docbitendK + stylebitK + ".visibility = '" + hidebitK + "'")
}
function kissbegin(){
//Let the browser know when the mouse moves
if (docLayers) {
document.captureEvents(Event.MOUSEMOVE)
document.onMouseMove = doKisser
} else {
document.onmousemove = doKisser
}
}
window.onload=kissbegin
</script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="scrolltopcontrol.js">
/***********************************************
* Scroll To Top Control script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Please keep this notice intact
* Visit Project Page at http://www.dynamicdrive.com for full source code
***********************************************/
</script>
<script type="text/JavaScript">
function FP_swapImg() {//v1.0
var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length;
n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm;
elm.$src=elm.src; elm.src=args[n+1]; } }
}
function FP_preloadImgs() {//v1.0
var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array();
for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; }
}
function FP_getObjectByID(id,o) {//v1.0
var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id);
else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el;
if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c)
for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; }
f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements;
for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } }
return null;
}
</script>
<style type="text/css">
.style2 {
margin: 0px auto;
padding: 0px;
width: 460px;
position: relative;
text-overflow: clip !important;
/*overflow: auto;*/
word-break: break-all !important;
font-family: Verdana;
font-size: 1.0em !important;
text-decoration: none;
color: #6a7c98;
}
a {
font-weight: normal;
}
a:link {
color: #6A7C98;
}
a:visited {
color: #6A7C98;
}
a:hover {
text-decoration: none;
color: white;
background-color: green;
border-width: 2px;
border-style: dotted;
border-color: purple;
}
a:active {
color: aqua;
background-color: navy;
}
.style3 {
font-size: 11px;
letter-spacing: normal;
background-color: #141A21;
}
.style4 {
font-size: 6px;
color: #FF0000 !important;
}
.style5 {
color: #FF0000;
font-size: 6px;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
<style>
script:first-of-type {
display: none;
}
.visually-hidden {
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap;
width: 1px;
}
a:hover .visually-hidden,
a:focus .visually-hidden,
button:hover .visually-hidden,
button:focus .visually-hidden {
position: relative;
margin: 0;
}
[hidden] {
display: none;
}
</style>
</head>
<!-- /* old tamper <body onload="myFunction()" style="margin:0";> */ -->
<body style="direction: ltr;"><!--onload="FP_preloadImgs(/*url*/'buttonB3.gif',/*url*/'buttonB4.gif',/*url*/'buttonC4.gif',/*url*/'buttonC5.gif',/*url*/'buttonC7.gif',/*url*/'buttonC8.gif');>-->
<script language="JavaScript" type="text/JavaScript">
function start() {
myFunction();
kissbegin();
}
window.onload = start;
</script>
<div id="loader"></div>
<div style="display:none;" id="myDiv" class="animate-bottom">
<div id="wrapper">
<div id="banner">
<div id="banner-edit"><img style="width: 100px; height: 75px;" alt="Green Skulls (Rotating" src="skullgre.gif" align="middle" vspace="30" /><img style="width: 600px; height: 48px;" alt="Logo text banner" src="coollogo_com-32082252.png" align="middle" /><img style="width: 100px; height: 75px;" alt="Green Skulls (Rotating" src="skullgre.gif" align="top" vspace="30" /></div>
</div>
<div id="container">
<div id="col-1">
<div class="NavBox">
<div class="NavHead">
<div class="NavHeadInfo">..::SiteMap::..</div>
</div>
<div class="NavFill">
<div class="nav-menu">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about-this-blog.html">About Us</a> <strong><sup><span class="style4">New!</span></sup></strong></li>
<li>Services</li>
<li>Products</li>
<li><a href="http://alien-fx-fiend.livejournal.com/">Blog</a></li>
<li><a href="comp-sci.html">Comp Engineering</a> <strong><sup><span class="style5">New!</span></sup></strong></li>
<li><a href="#">Science</a></li>
<li><a href="philosophy.html">Philosophy</a> <strong><sup><span class="style4">New!</span></sup></strong></li>
<li><a href="#">Creative Writing/Lingu</a></li>
<li><a href="pc-games.html">PC Games</a> <strong><sup><span class="style4">New!</span></sup></strong></li>
<li><a href="#">World Domination</a></li>
<li><a href="exp2.html#"> Studies-Related</a></li>
<li><a href="#">Miscellaneous</a></li>
<li><a href="exp2.html#">E-Zine</a></li>
<li><a href="mailto:[email protected]?subject=Enquiry">Contact Us</a></li>
<li><a href="http://users2.smartgb.com/g/g.php?a=s&i=g26-34462-59">Guestbook</a></li>
<li><a href="http://neoviper10.boards.net/">Message Board</a></li>
<li>Win Tweaks?!</li>
<li>Forum</li>
<li>Photo Gallery</li>
</ul>
</div>
</div>
<div class="NavFooter"></div>
</div>
<div class="NavBox">
<div class="NavHead">
<div class="NavHeadInfo">..::Update Logz::..</div>
</div>
<div class="NavFill">
<div class="NavInfo"> Testing The Small Content Box For Demo Purposes<br />
22/11 11:13 Added Tickertape+mousetrailx<br />
4/12 22:00 Expanded Computer Sections+Nav Links+Switched to MSEW<br />
6/12 1:50 Added favicon<br />
10/12 1:37 Improved Design<br />
23/1 16:00 Added CSS hover link effect<br />
5/7 00:52 MouseTrail + Fixed Phong + Encoding + link + Scrolltop + Snow<br />
8/7 10:45 Malicious virus script s.igmhb finally eradicated<br />
9/7 22:20 Few additional links, Uploading directly from MSEW now:rollouts<br />
24/7 00:00 Added comp-sci & pc-games pages<br />
16/8 16:00 Added Nav Buttons & Custom Search Engine, Switched to Dreamviewer (EW buggy+discn)<br />
24/8 3:32 Minor touches to the site —mostly ripping gifs & imgsearching<br />
8/9 7:25 Minor additions & few more links<br />
</div>
</div>
<div class="NavFooter"></div>
</div>
<div class="NavBox">
<div class="NavHead">
<div class="NavHeadInfo">..::SiteGear Poll::..</div>
</div>
<div class="NavFill">
<div class="NavInfo"> Testing The Small Content Box For Demo Purposes </div>
</div>
<div class="NavFooter"></div>
</div>
</div>
<div id="col-2">
<div class="CntBox">
<div class="CntHead">
<div class="CntHeadInfo"> <!--<span class="style6">" </span>-->[Hierarchical] Table of Contents: <!--<span class="style6">"</span>--> </div>
</div>
<div class="CntFill">
<div class="CntInfo">
<div class="style2"> <br /> <div style="text-align: left;">
[ <a href="index.html" class="btn-disable"> <img style="border: 0" id="img1" src="button86.gif" height="20" width="100" alt="Back" onmouseover="FP_swapImg(1,0,/*id*/'img1',/*url*/'buttonB3.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img1',/*url*/'button86.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img1',/*url*/'buttonB4.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img1',/*url*/'buttonB3.gif')" /><!-- MSComment="ibutton" fp-style="fp-btn: Soft Capsule 7; fp-transparent: 1" fp-title="Back" --></a> ] [ <a href="index.html" class="btn-disable"> <img style="border: 0" id="img2" src="button8C.gif" height="20" width="100" alt="Home" onmouseover="FP_swapImg(1,0,/*id*/'img2',/*url*/'buttonC7.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img2',/*url*/'button8C.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img2',/*url*/'buttonC8.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img2',/*url*/'buttonC7.gif')" /><!-- MSComment="ibutton" fp-style="fp-btn: Soft Capsule 7; fp-transparent: 1" fp-title="Home" --></a> ] [ <img style="border: 0" id="img3" src="button92.gif" height="20" width="100" alt="Forward" onmouseover="FP_swapImg(1,0,/*id*/'img3',/*url*/'buttonC4.gif')" onmouseout="FP_swapImg(0,0,/*id*/'img3',/*url*/'button92.gif')" onmousedown="FP_swapImg(1,0,/*id*/'img3',/*url*/'buttonC5.gif')" onmouseup="FP_swapImg(0,0,/*id*/'img3',/*url*/'buttonC4.gif')" /><!-- MSComment="ibutton" fp-style="fp-btn: Soft Capsule 7; fp-transparent: 1" fp-title="Forward" --> ]</div><br />
<br />
<center>
<img src="captboat.gif" width="187" height="86" style alt="Capn Java"/>
</center>
<br />
<br />
<center>
––––––•»»(¯`•®(¯`•-Ethical Hacking-•´¯)®•´¯)««•––––––
</center>
<br />
<div style="text-align: left;">
Windows NT Security<br />
NTFS<br />
LFS<br />
File Formats<br />
Windows PE\COFF<br />
Linux ELF<br />
POSIX<br />
UNIX Hacking<br />
x.0 Networking<br />
x.1 OSI Model<br />
Winsock\ WPF <br />
Modem Protocols<br />
X.25, V32.biz, KERMIT [V.32 bis XERMIT-Modem (X2?)] ????<br />
Outdials<br />
Phreaking [Telecomms Hacking]<br />
CISCO Routers<br />
OpenSSH<br />
Token Ring, VPN, Tunnel Adapter, ATM<br />
Firewalls: Application Layer\ Packet-level
RCE (Reverse Code Engineering)\ Malware Analysis<br />
RPC\ IPC Exploits<br />
DCOM\ LKM, Linux Kernel Programming<br />
Software Engineering\ Architect (Comp Sci)<br />
Semaphores, Atomic Spinlocks, Critical
Section, Race Condition, Shellcode, Buffer Overflows, Paging,
Concurrency (Recursive Locking), Deadlocks, Mutex, Thread Pools<br />
SIMD Optimization Parallel Processing
Multi-Threaded Programming<br />
Fuzzy Logic Machine Learning<br />
Data Compression: UPX<br />
pThread()<br />
Game Programming<br />
3D Game Character Modelling DirectX<br />
OpenGL<br />
Glide<br />
Game Modding (Lua)<br />
Android DDK\ SDK COM+<br />
Programming Languages<br />
Visual Basic .NET<br />
VBX, OCX, Active X<br />
API Hooking Methods (DLL Injection, IAT Patching, WriteProcessMemory()
CreateRemoteThread(), Service, SetWindowsHookEx, Process Hollowing, Detours/Mhook...)<br />
RAD (Rapid Application Development (Visual Basic)) DDE(Dynamic Data
Exchange) Named Pipes Writing to port ADO, Multidimensional Arrays <br />
Visual C# .NET<br />
MFC\ ATL\ STL<br />
Object-Oriented Programming, Methods<br />
PERL (Practical Extraction and Reporting
Language) CPAN = Comprehensive Perl Archive Network\ CGI (Common
Gateway Interface)<br />
Javascript<br />
Assembly Language (OOP ASM)<br />
Machine Language<br />
16-bit Advanced MSDOS\ Console
Programming<br />
MS Small Basic /w Plugins [LitDev +
XExtension]<br />
Prolog<br />
Algorithms<br />
Search, Sort, Synchro<br />
Binary Trees, Linked Lists, Hash Tables<br />
8 Queens Problem<br />
Data Structures<br />
Cryptography [Cryptology]<br />
Block\ Stream Ciphers<br />
MD5\ DES, Blowfish, RSA, Twofish, AES,
PGP (GPG)<br />
File\ Cyber Forensics<br />
Hardware<br />
Microprocessor Design |Architecture\ Platform<br />
Intel 8008 Arch, Manuals\ RISC (Reduced Instruction Set Computing)\ CISC,
PIC, Signal Processing<br />
GPU<br />
Matlab VHDL Verilog<br />
Electrical Engineering<br />
<br />
<center>
––––––•»»(¯`•®(¯`•-BlackHat Hacking-•´¯)®•´¯)««•––––––
</center>
<br />
Virii Authoring [Virology]<br />
COM\ Boot Sector Virus<br />
Polymorphic<br />
TSR\ MBR<br />
Stealth Rootkit<br />
Bootkit<br />
BlackHat Hacking Stuffz<br />
MAC Address Spoofing<br />
Session Hijacking<br />
Man in the Middle<br />
ARP Cache Poisoning<br />
DNS Spoofing<br />
NetBIOS\ File Sharing<br />
Port Scanners<br />
Nmap<br />
Packet Sniffers<br />
Cross-Site Scripting (XSS)\ Client-state Manipulation\ Cross-Site Request Forgery (XSRF)\ Cross Site Script Inclusion (XSSI)\ Path Traversal\ Code Execution\ Configuration Vulnerabilities\ AJAX Vulnerabilites<br />
Denial of Service (DoS)<br />
P.O.D. (Ping of Death)<br />
DDOS, Botnets C&C<br />
Bruteforcing\ Dictionary Attack
|Wardriving<br />
l0phtcrack<br />
Rainbow Books<br />
File binder Form grabbing Frame injection<br />
Social Engineering<br />
[Spear] Phishing\ Spammers & Scammers<br />
Web Application Security<br />
SOAP<br />
RAW Packet Programming<br />
BIOS Flashing<br />
Overclocking<br />
Source Code<br />
NIC Driver Source<br />
Yahoo Booter\ Client Source<br />
YahMini<br />
YMLite<br />
Voice Lagger (???)<br />
Old Skool Philes<br />
Web Design<br />
XHTML + CSS<br />
Flash<br />
jQuery<br />
AJAX (Asynchronous JavaScript and XML)<br />
Other: Bootstrap, Foundation, Google MDL
Cassandra SVG, Backbone.js, GO, WebKit<br />
Web Server Security<br />
MS IIS<br />
Apache<br />
Tomcat<br />
Xitami<br />
Bibliography<img src="book.gif" width="37" height="30" align="top" alt="Book Read" /><br /><br /><br />
<img src="hr-full3.gif" alt="HRule bluebar" height="33" width="100%" /><br /><br />
<center>-[ Computer Science Table of Contents ]-</center><br /><br />
1. Computer Networks: Deals with communication architecture and mechanisms<br />
1.1 Networking Architecture<br />
1.2 Web Servers/ Security<br />
1.3 Web Applications/ Security<br />
2. Software Architecture/ Platforms:<br />
2.1 System Development/ OS Kernel Internals: Spans Internals, BIOS, APIC, Device Drivers<br />
2.2 Software OS Platforms:<br />
2.2.1 Windows NT/ Security<br />
2.2.2 Unix/ Linux/ Solaris/ Security<br />
2.3 Application Programming Interfaces:<br />
2.3.1 POSIX<br />
2.3.2 Win32<br />
2.4 File Formats: PE, ELF, OBJ, HEXADECIMAL<br />
3. Programming: Mainly C++/ Assembly/ Advanced programming resources covered here, with special reference to internals<br />
3.1 C Language<br />
3.2 Assembly Language<br />
3.3 Integrated Development Environment Topics<br />
3.4 Algorithms/ Data Structures<br />
3.5 Graphics<br />
3.6 Cryptography: Polymorphism, Permutation, Transposition, Encryption<br />
3.7 Reverse Engineering: Disassembling, Debugging (breakpoints, ptrace, threadcontexts, single step events), Patching (section-padding), Packers/ ProcDump<br />
3.8 Artificial Intelligence<br />
3.9 Compiler Construction<br />
4.0 Advanced Concepts<br />
4.1 Source Code<br />
5. Hardware:<br />
5.1 Fundamentals<br />
5.2 Hardware Architecture: Intel x86, AMD, SPARC, MIPS, VMS, VACS<br />
5.3 Microprocessor/ Embedded Hardware<br />
5.4 Advanced Electrical Engineering<br />
6. Hacking/ Black Hat:<br />
6.1 Software/ Vulnerability Exploitation: Injection Vectors// Shellcode<br />
6.2 Malicious code: Rootkits, Virii, Worms, Malware<br />
7. Archives: Collections of series spanning mixed/ random/ old topics<br />
8. Miscellaneous: Other displaced topics<br />
8.1 External Resources/ Links<br />
</div>
<br />
<br />
<br />
<br />
<br />
<center>
<img src="evilinside-c200.gif" width="200" height="200" alt="evil inside" /><img src="5005f325bc3d1.png" width="256" height="256" alt="evil corei7 inside" />
</center>
<br />
<br />
<br />
<br />
</div>
</div></div>
<div class="CntFooter"></div>
</div>
<div id="col-2">
<div class="CntBox">
<div class="CntHead">
<div class="CntHeadInfo">Main Content Nav Box:</div>
</div>
<div class="CntFill">
<div style="text-align: justify;" class="CntInfo"><div class="style2"> Machine Language for the Commodore 64<br />
<a href="https://ptgmedia.pearsoncmg.com/images/9780735697959/samplepages/9780735697959.pdf">Windows 10 Step by Step</a> (Sample) (Excellant intro to Sign-in options)<br />
<a href="http://www.customguide.com/cheat_sheets/windows-10-quick-reference.pdf">Windows 10 Quick Reference Card</a><br />
Zilog Z80 Assembly Language<br />
<a href="https://spider2039.files.wordpress.com/2010/06/addison-wesley-windows-system-programming-4ed-mtshart2010.pdf">Windows System Programming 4ed</a><br />
<a href="http://csit.udc.edu/~byu/UDC3529315/WindowsInternals-4e.pdf">Windows Internals 4e</a><br />
<a href="https://users.dimi.uniud.it/~antonio.dangelo/OpSys/materials/Modern_Operating_Systems.pdf">Modern Operating Systems</a><br />
<a href="http://canvas.projekti.info/ebooks/Game%20Coding%20Complete%20-%204th%20Edition.pdf">Game Coding Complete 4th Edition</a><br />
NT WarDoc<br />
<a href="http://www.wisegeek.org/what-are-the-different-types-of-encryption-methods.htm"> There are three basic encryption methods: hashing, symmetric cryptography, and
asymmetric cryptography. </a><br />
<a href="https://www.storagecraft.com/blog/5-common-encryption-algorithms/">5 Common Encryption Algorithms and the Unbreakables of the Future</a><br />
<a href="http://www.cprogramming.com/tutorial/computersciencetheory/hash-table.html">Stacks, Queues, Heaps, Hash Tables, Graphs, Two-three trees</a><br />
<a href="http://www.tutorialspoint.com/data_structures_algorithms/tree_data_structure.htm">Data Structures and Algorithms Tree - Tutorials Point</a><br />
<a href="http://vxheaven.org/vx.php?id=zv00">VDAT (HTML!)</a><br />
WebKit is a layout engine software component for rendering web pages in web browsers. It powers Apple's Safari web browser.<br />
<a href="http://www.libertybasic.com/download.html">Liberty BASIC v4.5.1 Setup IDE (file size 5MB)</a> S/N: Malicious Monkey |92A858<br />
<a href="http://meggamusic.co.uk/winamp/Winamp_Download.htm">Winamp 5.666 Download (Patched)</a> S/N: Name: winamp serial: 3BAWK-B4346-9W0V8-3AJA6 Name: winamp serial: 82PU6-VTP91-9EHWC-50TE2<br />
<a href="https://www.tracker-software.com/product/pdf-xchange-viewer">PDF-XChange Viewer</a> Name: Team EAT Organization: EATiSO Email: teameat@no_email.com Key: PXP40-8HFT3-QTWZ1-QK2DN-MEUOP-VXG2o PXP40-TE9LD-K297V-L08I6-DKUZU-HJ2RT <a href="https://www.dropbox.com/scl/fi/9t2wzrrei99vdrphceqfg/PDFX_Vwr_Port.zip?rlkey=ks9alb6uv39xbjtjxww1vgj9q&dl=1">PDFXChangeViewer Portable</a> || <a href="https://www.dropbox.com/scl/fi/nij6ln42tbsrh4semjhco/PDFXCview-MODDED-EXE.rar?rlkey=8j1fr94plysnjg56mdufaj329&dl=1">PDFXChangeViewer (MODDED EXE (fixes dialog text out-of-bounds))</a><br />
XYplorer v17.40 S/N: AMPED |xy01-ST00-1fa6-2272-e07e-55da-fs16-0929<br />
<a href="http://www.bytecool.com/coolspch.htm">CoolSpeech v5.0</a> S/N: Name: ReanimatoR^LasH s/n: 54368<br />
<a href="https://dl.dropboxusercontent.com/s/e9dc2y3so38f4f0/QREAD.zip">QRead95 (2.1)</a> S/N:: Name: 4U! s/n: wwPQTUXYKoCDFDxv<br />
<a href="https://www.softpedia.com/get/Programming/File-Editors/eXeScope.shtml">eXeScope 6.40</a> S/N:: Name: Lockless-r0x s/n: A142311199 Name: Lockless-r0x s/n: A142311199<br /><a href="https://sites.google.com/view/ttslistupdate/">Free Large Collection of TTS Voices</a> || <a href="https://www.deviantart.com/waleedtariqmmd/journal/Text-to-speech-voices-pack-download-926454067">Alt #2 Download Site</a> || <a href="https://archive.org/details/TTSVoices">Few TTS Voices</a> Justin (Male) Speech2Go Serial: 4YZ102-VUVX9Q-J4MFIV-CR28V9-IR02DF
<br />
<br />
<img src="anim-cat.gif" alt="Black Panther" width="85" height="41" style align="right" hspace="30" /><br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<img alt="BomberHR" src="hr-planeani.gif" width="458" height="55" /><br />
</div>
</div></div></div>
<div class="CntFooter"></div>
</div>
<div id="col-2">
<div class="CntBox">
<div class="CntHead">
<div class="CntHeadInfo">Leeched Links List: 'Listicle':</div>
</div>
<div class="CntFill">
<div class="CntInfo">
<div class="style2" align="left">
<a href="http://www.autoitscript.com/forum/index.php?showtopic=94497"> Yahoo Protocol Informaion </a><br />
<a href="http://c.learncodethehardway.org/book/">Learn C The Hard Way</a><br />
<a href="http://101.lv/learn/C++/">Teach Yourself C++ In 21 Days</a><br />
<a href="http://www.learnprolognow.org/">Learn Prolog Now</a><br />
<a href="https://github.com/bitemyapp/learnhaskell">Learn Haskell</a><br />
<a href="http://learnyouahaskell.com/chapters">Haskell eBook</a><br />
<a href="http://www.cprogramming.com/tutorial/c++-tutorial.html">Learn C++ - Tutorial</a><br />
<a href="http://gribblelab.org/cbootcamp/">C Programming Bootcamp</a> <a href="http://home.netcom.com/~tjensen/ptr/pointers.htm">A Tutorial on Pointers and Arrays in C</a><br />
<a href="http://www.ctyme.com/rbrown.htm">Ralph Brown's Interrupt List</a><br />
<a href="https://courses.engr.illinois.edu/ece390/books/artofasm/artofasm.html">The Art of Assembly Language Programming</a><br />
<a href="http://www.atariarchives.org/2bml/">The Second Book on Machine Language</a><br />
<a href="http://www.cl.cam.ac.uk/~rja14/book.html">Security Engineering - A Guide to Building Dependable Distributed Systems</a><br />
TCP\IP Guide<br />
PC Guide<br />
<a href="http://www.inf.usi.ch/faculty/soule/teaching/2015-spring/db/c++_mini_course.pdf">C++ Mini-Course</a><br />
<a href="http://programmedlessons.org/AssemblyTutorial/">Programmed Introduction to MIPS Assembly Language</a><br />
<a href="http://cnqzu.com/library/Anarchy%20Folder/Fiction/-_Fantasy_Novels/">Index of /library/Anarchy Folder/Fiction/-_Fantasy_Novels</a><br />
<a href="https://hpbn.co/">High Performance Browser Networking (O'Reilly)</a><br />
<a href="https://github.com/Blackgu/ebooks/blob/master/ebooks/2012-2-14books/Seven%20Languages%20in%20Seven%20Weeks.pdf">ebooks/Seven Languages in Seven Weeks.pdf at master · Blackgu/ebooks · GitHub</a><br />
<a href="http://www.faqs.org/faqs/">Internet FAQ Archives - Online Education - faqs.org</a><br />
<a href="http://souptonuts.sourceforge.net/tcpdump_tutorial.html">DoS Attacks (SYN Flooding, Socket Exhaustion): tcpdump, iptables, and Rawsocket Tutorial</a><br />
<a href="http://www.winsocketdotnetworkprogramming.com/">Winsock, socket and network programming tutorials using C#, C++/CLI and VB .NET with code examples and program samples</a><br />
<a href="http://rookscape.com/vbgaming/">Lucky's VB Gaming Site - Home</a><br />
<a href="http://cuinl.tripod.com/tutorials.htm">Visual Basic Tutorial</a><br />
<a href="http://mirror.sweon.net/madchat/vxdevl/papers/vxers/">Index of /madchat/vxdevl/papers/vxers</a><br />
<a href="http://win32assembly.online.fr/">Iczelion's Win32 Assembly Homepage</a><br />
<a href="http://homepage.mac.com/randyhyde/webster.cs.ucr.edu/index.html">Art of Assembly Language Programming and HLA by Randall Hyde</a><br />
<a href="http://virus.bartolich.at/virus-writing-HOWTO/_html/index.html">The ELF Virus Writing HOWTO</a><br />
<a href="http://www.happycodings.com/">Happy Codings - Programming Sample Code Source Code Search Engine, Example Codes</a><br />
<a href="http://www.pdf-search-engine.com/microprocessor-fundamentals-schaums-series-torrent-pdf.html">Microprocessor Fundamentals Schaums Series Torrent .pdf Ebook Download</a><br />
<a href="http://www.shareup.net/Utilities/Printer/Virtual-Printer-Driver-Source-Code-review-3058.html">Virtual Printer Driver Source Code</a><br />
<a href="http://www.shareup.net/Utilities/Printer/NED-Image-Printer-Driver-2000-Source-Code-review-3064.html">NED Image Printer Driver 2000 Source Code</a><br />
<a href="http://www.apl.jhu.edu/~hall/lisp.html">An Introduction and Tutorial for Common Lisp</a><br />
<a href="http://buildinggadgets.com/index_tutorials.htm">Electronics Tutorials</a><br />
<a href="http://www.rebelshavenforum.com/sis-bin/ultimatebb.cgi?ubb=get_topic;f=52;t=000011;p=1#000%20006">The New Rebels Haven Forum!!: Using Modbin6.exe</a><br />
<a href="http://www.xtremesystems.org/forums/archive/index.php/t-40842.html">My Guide to Award BIOS Hacking [Archive] - XtremeSystems Forums</a><br />
Undocumented Windows NT 2000 Secrets<br />
<a href="https://appnee.com/programming-windows-5th-6th-editions-hd-pdf-epub-chm/">Programming Windows 4 [5-6] by Charles Petzold</a><br />
BIOS Disassembly Ninjutsu Uncovered<br />
Linux Kernel Internals<br />
Rootkits: Subverting The Windows Kernel<br />
Programming The Windows Driver Model<br />
Mastering Visual Basic 6 by Evangelous Petroutsos<br />
Visual C++ 6 For Dummies<br />
Professional Video Game Programming by Diana Gruber<br />
Virtual Reality Construction Kit<br />
<a href="http://zrftech.blogspot.in/2013/03/hacking-art-of-exploitation-2nd-edition.html">Hacking: The Art of Exploitation 2nd Edition</a><br />
3D Game Character Modelling<br />
<a href="http://www.garybeene.com/vb/tutor.htm">Gary Beene VB tuts</a><br />
Project Oberon: Design & Implementation of an Operating System & Compiler<br />
<a href="http://ebooks.cawok.pro/">eBooks Archive</a> <br />
<a href="http://www.geos.ed.ac.uk/~bmg/software/Perl%20Books/learning_perl.pdf"> http://www.geos.ed.ac.uk/~bmg/software/Perl%20Books/learning_perl.pdf</a><br />
<a href="http://onz.es/OReilly/Learning%20Perl.pdf"> http://onz.es/OReilly/Learning%20Perl.pdf</a><br />
<a href="http://cs.petrsu.ru/~musen/php/2013/Books/Beginning%20PHP%205.3%20by%20Matt%20Doyle.pdf">http://cs.petrsu.ru/~musen/php/2013/Books/Beginning%20PHP%205.3%20by%20Matt%20Doyle.pdf</a><br />
<a href="https://github.com/EbookFoundation/free-programming-books/blob/master/free-programming-books.md#assembly-language">https://github.com/EbookFoundation/free-programming-books/blob/master/free-programming-books.md#assembly-language</a><br />
[<a href="http://justlearnwp.com/free-web-design-books-pdf-download/">http://justlearnwp.com/free-web-design-books-pdf-download/</a>] <a href="https://speckyboy.com/free-web-design-ebooks/">https://speckyboy.com/free-web-design-ebooks/</a><br />
<a href="https://tproger.ru/articles/free-programming-books/">https://tproger.ru/articles/free-programming-books/</a><br />
<a href="http://repo.mynooblife.org/.priv8/Ebook/Web%202.0%20Principles%20and%20Best%20Practices.pdf">http://repo.mynooblife.org/.priv8/Ebook/Web%202.0%20Principles%20and%20Best%20Practices.pdf</a><br />
Panther Attack Modem<br />
Bootkit links:<br />
Rootkits and Bootkits | No Starch Press<br />
<a href="https://usa.kaspersky.com/downloads/tdsskiller">TDSSKiller Rootkit Removal Utility - Kaspersky Lab</a><br />
<a href="https://www.sophos.com/en-us/products/free-tools/sophos-anti-rootkit.aspx">Anti-Rootkit Scanner - Free Rootkit Detection and Removal (Sophos)</a><br />
RootkitRemover | McAfee Free Tools<br />
<a href="https://www.mcafee.com/us/downloads/free-tools/rootkitremover.aspx">Malwarebytes | Anti-Rootkit BETA - Free Rootkit Scanner</a><br />
<a href="https://labs.bitdefender.com/2013/02/rootkit-remover/">Rootkit Remover - Bitdefender Labs</a><br />
<a href="http://www.inquisitr.com/31615/bootkit-the-next-generation-rootkit-terror/">Bootkit - The Next Generation Rootkit</a><br />
<a href="http://searchsecurity.techtarget.com/answer/KINS-malware-Rootkit-vs-bootkit"> http://searchsecurity.techtarget.com/answer/KINS-malware-Rootkit-vs-bootkit [x]</a><br />
<a href="https://en.wikipedia.org/wiki/Rootkit#bootkit">Bootkit [From Wikipedia]</a><br />
<a href="https://macpablodesigns.wordpress.com/2009/10/01/bootkits-what-is-bootkit-and-why-should-it-concern-you/">Bootkits, What is Bootkit and why should it concern you?</a><br />
<a href="http://www.techrepublic.com/blog/10-things/10-plus-things-you-should-know-about-rootkits/">10+ things you should know about rootkits</a><br />
<a href="http://www.angelfire.com/pro2/xsnakex/Index.htm">Rattlesnake's Lair fansite</a><br />
<a href="https://www.visualstudio.com/vs/visual-studio-express/">https://www.visualstudio.com/vs/visual-studio-express/</a><br />
<a href="http://www.microsoft.com/web/webmatrix/?wa=wsignin1.0">http://www.microsoft.com/web/webmatrix/?wa=wsignin1.0</a><br />
<a href="http://www.thepiratebay.org/torrent/17670266/Adobe+Dreamweaver+CC+2017+v17.1.0.9583+%28x64%29+Portable+%5BTechTools">Adobe Dreamweaver CC 2017 v17.1.0.9583 (x64) Portable [TechTools [Torrent]</a><br />
<a href="http://longfiles.com/qea4ozwmpp3e/Dreamweaver_CC_Digital_Classroom.pdf.html">http://longfiles.com/qea4ozwmpp3e/Dreamweaver_CC_Digital_Classroom.pdf.html</a><br />
<a href="http://web.archive.org/web/20021125042244/http://www.hackerscenter.com:80/knowledgearea/tutorials/index.htm">Hackers Center - Assorted Hacking Tfiles [Archived]</a><br />
<a href="http://web.archive.org/web/20020604110140/http://www.hackerscenter.com:80/">Hackers Center - Home [Archived]</a><br />
<a href="http://cdn.preterhuman.net/texts/underground/hacking/Maximum%20Security%20-%20A%20Hacker's%20Guide%20to%20Protecting%20your%20Internet%20Site%20and%20Network.pdf">Maximum Security - A Hacker's Guide to Protecting your Internet Site and Network [PDF ver]</a><br />
<a href="http://www2.gsu.edu/~matpxp/SwIG/talks/java_applets.pdf">http://www2.gsu.edu/~matpxp/SwIG/talks/java_applets.pdf</a><br />
<a href="http://uap.unnes.ac.id/ebook/programming%20references/">Lots of useful & assorted ebooks (traverse dir)</a><br />
<a href="http://www.allitebooks.com/programming/visual-basic/">VB.NET Latest ebooks</a><br />
<a href="https://ebooks-it.org/category-visual-basic-2.htm">More VB.NET Latest ebooks</a><br />
<br />
<a href="https://hienlth.info/easycs/Ebooks/C_Sharp_Succinctly.pdf">https://hienlth.info/easycs/Ebooks/C_Sharp_Succinctly.pdf</a><br />
<a href="http://www.spumonte.com/files/PDFs/Microsoft%20XNA%20Unleashed%20Graphics%20and%20Game%20Programming%20for%20Xbox%20360%20and%20Windows.pdf">http://www.spumonte.com/files/PDFs/Microsoft%20XNA%20Unleashed%20Graphics%20and%20Game%20Programming%20for%20Xbox%20360%20and%20Windows.pdf</a><br />
<a href="http://184.168.171.185/BOOKS/DVD%201/C%23%203.0%20Unleashed%20With%20.NETFX%203.5%20-%20Joe%20Mayo.pdf">http://184.168.171.185/BOOKS/DVD%201/C%23%203.0%20Unleashed%20With%20.NETFX%203.5%20-%20Joe%20Mayo.pdf</a><br />
<a href="http://184.168.171.185/BOOKS/">http://184.168.171.185/BOOKS/</a><br />
<a href="http://ebook.pldworld.com/_eBook/FPGA/HDL/Microprocessor%20Design%20principles%20and%20practices%20with%20Vhdl.pdf">http://ebook.pldworld.com/_eBook/FPGA/HDL/Microprocessor%20Design%20principles%20and%20practices%20with%20Vhdl.pdf</a><br />
<a href="https://www.uop.edu.jo/download/research/members/Digital_Design_and_Computer_Architecture.pdf">https://www.uop.edu.jo/download/research/members/Digital_Design_and_Computer_Architecture.pdf</a><br />
<a href="http://www.kelm.ftn.uns.ac.rs/literatura/mms/pdf/The%208051%20Microcontroller%20Architecture,%20Programming%20And%20Applications.pdf">http://www.kelm.ftn.uns.ac.rs/literatura/mms/pdf/The%208051%20Microcontroller%20Architecture,%20Programming%20And%20Applications.pdf</a><br />
<a href="http://ic.sjtu.edu.cn/ic/dic/wp-content/uploads/sites/10/2013/04/CMOS-VLSI-design.pdf">http://ic.sjtu.edu.cn/ic/dic/wp-content/uploads/sites/10/2013/04/CMOS-VLSI-design.pdf</a><br />
<a href="http://electro.fisica.unlp.edu.ar/arq/downloads/Papers/ARM/Addison%20Wesley%20-%20ARM%20System-on-Chip%20Architecture,%202Ed.pdf">http://electro.fisica.unlp.edu.ar/arq/downloads/Papers/ARM/Addison%20Wesley%20-%20ARM%20System-on-Chip%20Architecture,%202Ed.pdf</a><br />
<a href="http://site.iugaza.edu.ps/engmoayed/files/2010/03/Designing.Embedded.Systems.with.PIC.Microcontrollers.eBook-S.pdf">http://site.iugaza.edu.ps/engmoayed/files/2010/03/Designing.Embedded.Systems.with.PIC.Microcontrollers.eBook-S.pdf</a><br />
<a href="https://www.u-cursos.cl/usuario/9553d43f5ccbf1cca06cc02562b4005e/mi_blog/r/CMOS_Circuit_Design__Layout__and_Simulation__3rd_Edition.pdf">https://www.u-cursos.cl/usuario/9553d43f5ccbf1cca06cc02562b4005e/mi_blog/r/CMOS_Circuit_Design__Layout__and_Simulation__3rd_Edition.pdf</a><br />
<a href="http://www.cuc.ucc.ie/CS1101/David%20Tarnoff.pdf">http://www.cuc.ucc.ie/CS1101/David%20Tarnoff.pdf</a><br />
<a href="http://117.3.71.125:8080/dspace/bitstream/DHKTDN/6634/1/6073.Analog%20Interfacing%20to%20Embedded%20Microprocessors%20Real%20World%20Design.pdf">http://117.3.71.125:8080/dspace/bitstream/DHKTDN/6634/1/6073.Analog%20Interfacing%20to%20Embedded%20Microprocessors%20Real%20World%20Design.pdf</a><br />
<a href="http://www.iuma.ulpgc.es/~nunez/clases-micros-para-com/clases-mpc-slides-links/Copy%20of%20(Ebook%20Pdf)%20Computer%20Architecture%20A%20Quantitative%20App.pdf">http://www.iuma.ulpgc.es/~nunez/clases-micros-para-com/clases-mpc-slides-links/Copy%20of%20(Ebook%20Pdf)%20Computer%20Architecture%20A%20Quantitative%20App.pdf</a><br />
<a href="http://d1.amobbs.com/bbs_upload782111/files_33/ourdev_585395BQ8J9A.pdf">http://d1.amobbs.com/bbs_upload782111/files_33/ourdev_585395BQ8J9A.pdf</a><br />
<a href="http://ac.aua.am/Arm/Public/2017-Spring-Computer-Organization/Textbooks/ComputerOrganizationAndDesign5thEdition2014.pdf">http://ac.aua.am/Arm/Public/2017-Spring-Computer-Organization/Textbooks/ComputerOrganizationAndDesign5thEdition2014.pdf</a><br />
<a href="https://www.altera.com/en_US/pdfs/literature/hb/nios2/edh_ed_handbook.pdf">https://www.altera.com/en_US/pdfs/literature/hb/nios2/edh_ed_handbook.pdf</a><br />
<a href="http://repository.mdp.ac.id/ebook/programming-books/C++%20Reference/Visual%20C++%204%20Unleashed/index-1.htm">http://repository.mdp.ac.id/ebook/programming-books/C++%20Reference/Visual%20C++%204%20Unleashed/index-1.htm</a><br />
<a href="https://ceit.aut.ac.ir/~shiry/lecture/programming/Sams%20-%20Teach%20Yourself%20the%20C%20sharpLanguage%20in%2021%20Days.pdf">https://ceit.aut.ac.ir/~shiry/lecture/programming/Sams%20-%20Teach%20Yourself%20the%20C%20sharpLanguage%20in%2021%20Days.pdf</a><br />
<a href="http://it.guldstadsgymnasiet.se/c%23/C%23%205.0%20in%20a%20Nutshell,%205th%20Edition.pdf">http://it.guldstadsgymnasiet.se/c%23/C%23%205.0%20in%20a%20Nutshell,%205th%20Edition.pdf</a><br />
<a href="http://www.albrightcs.com/Windows%2010%20For%20Dummies.pdf">Windows 10 For Dummies</a><br />
<a href="https://www.gitbook.com/book/samypesse/how-to-create-an-operating-system/details">How to Create an Operating System in C++</a><br />
<br />
<a href="http://www.alycesrestaurant.com/chat.htm">http://www.alycesrestaurant.com/chat.htm [Traverse dir]</a><br />
<a href="http://www.libertybasic.com/programming_tutorials.html">http://www.libertybasic.com/programming_tutorials.html</a><br />
<a href="http://www.libertybasicuniversity.com/lbnews/nl101/3.htm">http://www.libertybasicuniversity.com/lbnews/nl101/3.htm</a><br />
<a href="http://www.libertybasicuniversity.com/lbnews/nl102/8.htm Call-Level Interface (CLI)">http://www.libertybasicuniversity.com/lbnews/nl102/8.htm Call-Level Interface (CLI)</a><br />
<a href="http://www.libertybasicuniversity.com/lbnews/nl101/5.htm API">http://www.libertybasicuniversity.com/lbnews/nl101/5.htm API</a><br />
<a href="https://groups.yahoo.com/neo/groups/libertybasic/info">Liberty BASIC Yahoo Group [Resources]</a><br />
SAMS Teach Yourself Beginning Programming in 24 Hours - (Greg Perry<br />
<a href="http://libertybasic.conforums.com/">Liberty Basic Alternate Forum</a><br />
Visual Basic Programmer's Guide to the Win32 API, Published by Sams - ISBN: 0672315904<br />
Visual Basic 5.0 programmers guide to the WIN32 API by Danny Appleman<br />
<a href="http://vbnet.mvps.org/">VB API Misc</a><br />
<a href="http://www.freebyte.com/programming/basic/">BASIC Resources</a><br />
<a href="http://www.vbi.org/Folders/index.asp?id=573&t=-129">More VB Resources</a><br />
<a href="http://www.thevbprogrammer.com/ch05/05-07-api.htm">VB API article</a><br />
<a href="http://www.johnsmiley.com/cis18/smiley026.pdf">http://www.johnsmiley.com/cis18/smiley026.pdf</a><br />
<a href="https://thepiratebay.org/torrent/7200306/106.visual.basic.ebooks_MegaCollection">106 Visual Basic Ebooks [Torrent] cf. Demonoid.pw</a><br />
<br />
<a href="http://rinkworks.com/bookaminute/classics.shtml">The Ultra-Condensed Classic Books</a><br />
<a href="https://computer.howstuffworks.com/graphics-card.htm">How Graphics Cards Work</a><br />
<a href="http://www.authorama.com/">Authorama Public Domain Books</a><br />
<a href="https://www.everything2.org">Read /w us. Write /w us.</a>/<br />
<a href="http://youshouldhaveseenthis.com/">99 Things You Should've Experiences</a><br />
xwww.hopeman.de/hopeman-gifdump-207<br />
xhttp://www.huhmagazine.co.uk/5461/the-worlds-most-beautiful-libraries<br />
<a href="https://www.cracked.com/article_21349_69-awesome-brain-hacks-that-give-you-mind-blowing-powers.html">69 Awesome Brain Hacks That Give You Mind-Blowing Powers</a><br />
<a href="https://smyl.es/tutorial-how-to-build-the-ultimate-custom-usb-drive-with-multiple-bootable-installs-for-windows-and-linux-and-portableapps-for-windows/">Ultimate USB Drive /w Multiple Boots</a><br />
<a href="https://freebookbrowser.com/languages/german.php">Read Free German Books</a><br />
<a href="https://freethoughtblogs.com/pharyngula/files/2014/01/donuts_socialmedia-500x651.jpg">Social Media Explained Doughnuts meme</a><br />
<a href="https://www.buzzbookstore.com/blog/2016/9/21/42-books-that-you-cant-put-down-after-picking-up">42 Books That You Can't Put Down</a><br />
<a href="https://codebutler.com/2010/10/24/firesheep/">Firesheep Session Hijacking</a><br />
https://youtu.be/VGj5EffwnDg<br />
https://youtu.be/VGj5EffwnDg?t=84<br />
<a href="http://worldofstuart.excellentcontent.com/antipiracy.htm">Classic Anti-Piracy Ads</a><br />
<a href="http://samy.pl/usbdriveby/">USBdriveby PrivEsc</a><br />
n0where.net/best-onion-links-deep-web<br />
<a href="http://hardwarehell.com/">Computer Help & Support (Hardware Hell)</a><br />
<a href="https://orwell.ru/library/novels/1984/english/en_p_1">George Orwell 1984</a><br />
qwily.com/2015/05/07/22-unethical-life-hacks-use-at-your-own-risk-2<br />
flavorwire.com/419194/the-50-scariest-books-of-all-time/view-all<br />
<a href="http://www.conceptlab.com/simulator/morning/clock800.html">Wake Up</a><br />
<a href="http://www.hackertest.net/">Hacker Test Test your hacking skills</a><br />
<a href="https://www.stopstartdo.com/blog/best-books-of-2015-nonfiction-that-will-make-you-a-genius">4 Books That Will Make You A Genius</a><br />
custom.crn.com/cylance-security-learningcenter<br />
www.plinko.net/Roulette/faq.asp<br />
<a href="http://www.catb.org/~esr/jargon/html/">The Jargon File 4.4.7</a><br />
cybergali.com/7-best-websites-to-learn-hacking<br />
<a href="https://bookshelfporn.com/page/4">Bookshelf Pr0n Images</a><br />
defaultpassword.com<br />
<a href="https://bookriot.com/10-kick-ass-secret-passage-bookshelves/">10 Secret Passage Bookshelves</a><br />
<a href="http://www.mit.edu/hacker/hacker.html">The Hacker Crackdown Law and Disorder on the Electronic Frontier</a><br />
faculty.ccri.edu/tonyrashid/etek.htm<br />
<a href="https://matadornetwork.com/notebook/45-best-books-read-road/">The 45 Best Books To Read on the Road</a><br />
<a href="https://en.wikipedia.org/wiki/Godwin%27s_law">Godwin's Law Wiki</a><br />
hackercs.com/streams/Introduction-to-Computer-Science<br />
www.writerightnow.co.uk/stand-out-post-apocalyptic-novels<br />
wikibon.org/blog/the-art-of-cable-organizationwikibon.org/blog/the-art-of-cable-organization<br />
vimeo.com/47890552<br />
xwww.spamhelp.org/harvesterkiller<br />
<a href="https://www.frozencpu.com/">PC Modification Supplies FrozenCPU</a><br />
<a href="https://www.geoguessr.com/seterra/en/p/learn-german">Selingua - Learn German Vocabulary</a> <br />https://online.seterra.com/en/p/learn-german<br />
<a href="https://computer.howstuffworks.com/liquid-cooled-pc.htm">How Liquid-Cooled PC's Work</a><br />
www.cultdeadcow.com/cDc_files/cDc-351<br />
<a href="https://blog.briancmoses.com/2016/02/diy-nas-2016-edition.html">DIY NAS: 2016 Edition</a><br />
<a href="https://youtu.be/gLDYtH1RH-U">Shanghai Tower (650 meters)</a><br />
www.bromygod.com/2015/09/18/20-of-best-gifs-the-internet-brought-us-this-week<br />
<a href="https://www.duolingo.com/">Duolingo- The Worlds Best Way to Learn Languages</a><br />
<a href="http://lbpe.wikispaces.com/advanced#ABCs of APIs Series">ABCs of APIs Series [LB4]</a><br />
<a href="http://jbfilesarchive.com/phpBB3/viewtopic.php?f=4&t=2124">Minesweeper [LB4] Source Code</a><br />
<br />
<a href="http://msdn.microsoft.com/library/">http://msdn.microsoft.com/library/</a><br />
<a href="http://www.csie.ntu.edu.tw/~r93020/eBook">http://www.csie.ntu.edu.tw/~r93020/eBook/</a><br />
<a href="http://canvas.projekti.info/ebooks">http://canvas.projekti.info/ebooks/</a><br />
<a href="http://www.cs.fsu.edu/~zwang/files/cop4610/Fall2016/windows.pdf">http://www.cs.fsu.edu/~zwang/files/cop4610/Fall2016/windows.pdf</a><br />
<a href="http://users.nik.uni-obuda.hu/vamossy/SZPE2011/Segedletek/Multi-Core_Programming_Digital_Edition_(06-29-06).pdf">Multi-Core Programming: Increasing Performance through Software Multi-threading</a><br />
<a href="https://repo.zenk-security.com/Reversing%20.%20cracking/Practical%20Reverse%20Engineering.pdf">Practical Reverse Engineering</a><br />
<a href="http://pdf.th7.cn/down/files/1312/ccli_in_action.pdf"></a>C++/CLI in Action<br />
<a href="https://news.asis.io/sites/default/files/The%20Art%20of%20Memory%20Forensics.pdf">The Art of MeMory Forensics</a><br />
<a href="https://www.uop.edu.jo/download/research/members/vb6_1__1_.0%20-%20visual%20basic%20-%20learn%20visual%20basic%206.0%20(nice%20manual).pdf">Course Notes for: Learn Visual Basic 6.0</a> <a href="https://cours.etsmtl.ca/gpa789/pdf/OfficialGUI.pdf">Official Guidelines for User Interface Developers and Designers</a><br />
<a href="https://www.watchguard.com/docs/whitepaper/wg_combating-advanced-malware_ebook.pdf">A PRACTICAL GUIDE TO COMBATING ADVANCED MALWARE</a><br />
<a href="http://www.uobabylon.edu.iq/download/M.S%202013-2014/Operating_System_Concepts,_8th_Edition[A4].pdf">Operating System Concepts- 8th Edition</a><br />
<a href="https://www.uop.edu.jo/download/research/members/Architecture_Design_Notebook.pdf">Architecture Design Notebook</a><br />
<a href="https://www.uop.edu.jo/download/research/members/Create_Your_First_Website_2.pdf">https://www.uop.edu.jo/download/research/members/Create_Your_First_Website_2.pdf</a><br />
<a href="https://www.uop.edu.jo/download/research/members/data-recovery-book.pdf">DATA RECOVERY E-BOOK V1.5</a><br />
<a href="https://www.uop.edu.jo/download/research/members/Digital_Design_-_A_Comprehensive_Guide_to_Digital_Electronics_and_Computer_System_Architecture_20.pdf">Digital Design- A Comprehensive Guide To Digital Electronics and Computer System Architecture</a><br />
<a href="https://www.uop.edu.jo/download/research/members/ebook%20-%20pdf%20-%20how%20to%20study%20the%20chess%20opening.pdf">How to Srudy Chess Opening</a><br />
<a href="https://www.uop.edu.jo/download/research/members/Architecture_Interior_Design.pdf">Architecture: Interior Design</a><br />
<a href="https://www.uop.edu.jo/download/research/members/EC-9421-VisualBasic_NET-Visual_Basic_NET_Core_Courses-Visual_Basic_NET_Essentials.pdf">Visual Basic Core Courses- .NET Essentials</a><br />
<a href="https://www.uop.edu.jo/download/research/members/English%20Book%20-%20Fun%20With%20Grammar.pdf">Fun with Grammar Suzanne W. Woodward</a><br />
<a href="https://www.uop.edu.jo/download/research/members/Oxford_Guide_to_English_Grammar.pdf">Oxford Guide to English Grammar</a><br />
<a href="https://www.uop.edu.jo/download/research/members/Rob%20Miles%20CSharp%20Yellow%20Book%202009.pdf">C# Development Yellow Book</a><br />
<a href="https://www.uop.edu.jo/download/research/members/Teaching%20English%20To%20Children.pdf">Teaching bEnglish To Children</a><br />
<a href="http://araku.ac.ir/~d_comp_engineering/88892/1323108/OpenGL%20Game%20Development.pdf">OpenGL Game Development</a><br />
<a href="http://www.basicknowledge101.com/pdf/km/Application%20programming%20interface.pdf">Application programming interface</a><br />
<a href="http://dl.finebook.ir/book/51/12369.pdf">Concurrent Programming on Windows</a><br />
<a href="http://users.minet.uni-jena.de/~nwk/Tricks.pdf">Tricks of the Hackers: API Hooking and DLL Injection</a> <a href="https://www.microbe.cz/docs/Beyond_BIOS_Second_Edition_Digital_Edition_(15-12-10)%20.pdf">Beyond BIOS: Developing with the Unified Extensible Firmware Interface</a><br />
<a href="http://iaci.unq.edu.ar/materias/laboratorio2/Dll%5CDLLs%20for%20Beginners.pdf">DLLs for Beginners</a><br />
<a href="http://aranna.altervista.org/data2/3d_game_programming_with_DirectX11.pdf">Introduction to 3D GAME PROGRAMMING WITH DIRECTX 11</a><br />
<a href="The Principles of Creating Modern TSR Programs Running under the Microsoft Windows Operating System">http://nova.pc.pl/modtsr.pdf</a><br />
<a href="http://venom630.free.fr/pdf/">http://venom630.free.fr/pdf/</a><br />
<br />
<a href="http://www.textfiles.com/politics/ita_bc.txt">An Introduction to the Anarchist Movement</a><br />
<a href="http://www.textfiles.com/etext/NONFICTION/epictetus-discourses-568.txt">The Discourses by Epictetus</a><br />
<a href="http://www.gutenberg.org/cache/epub/690/pg690-images.html">Proposed Roads To Freedom by Bertrand Russell</a><br />
<br />
http://www.relisoft.com/Win32/index.htm<br />
<a href="https://zetcode.com/gui/winapi/"></a>Windows API tutorial<br />
<a href="https://msdn.microsoft.com/en-us/library/bb384843.aspx">Walkthrough: Creating Windows Desktop Applications (C++)</a><br />
<a href="https://www.codementor.io/malortie/c-cpp-tutorial-build-win32-api-app-part-1-du107u9je">Step-by-Step Guide to Building a Win32 API Application: Part 1</a><br />
<a href="https://users.physics.ox.ac.uk/~Steane/cpp_help/winapi_intro.htm">Quick introduction to Windows API</a><br />
<a href="http://www.tenouk.com/cnwin32tutorials.html">The Tenouk's Win32 programming tutorial</a><br />
<a href="https://learnwinapi.wordpress.com/">Lessons In Windows API Programming (C++)</a><br />
<a href="http://www.catch22.net/tuts">Tutorials - Catch22</a><br />
<br />
<a href="http://freepdf-books.com/sams-teach-yourself-dreamweaver-cs5-in-24-hours/">http://freepdf-books.com/sams-teach-yourself-dreamweaver-cs5-in-24-hours/</a><br />
<a href="http://www.aonaware.com/OOP1.htm">http://www.aonaware.com/OOP1.htm</a><br />
<a href="https://www.codeproject.com/Articles/22769/Introduction-to-Object-Oriented-Programming-Concep">https://www.codeproject.com/Articles/22769/Introduction-to-Object-Oriented-Programming-Concep</a><br />
<a href="https://www.tutorialspoint.com/cplusplus/cpp_object_oriented.htm">https://www.tutorialspoint.com/cplusplus/cpp_object_oriented.htm</a><br />
<a href="http://www.c-sharpcorner.com/UploadFile/84c85b/object-oriented-programming-using-C-Sharp-net/">http://www.c-sharpcorner.com/UploadFile/84c85b/object-oriented-programming-using-C-Sharp-net/</a><br />
<a href="http://www.blackwasp.co.uk/CSharpObjectOriented.aspx">http://www.blackwasp.co.uk/CSharpObjectOriented.aspx</a><br />
<br />
<a href="http://www.bibliomania.com/">http://www.bibliomania.com/</a><br />
<a href="http://onlinebooks.library.upenn.edu/webbin/book/browse?type=subject&index=50&key=a2k%20movement&c=c">http://onlinebooks.library.upenn.edu/webbin/book/browse?type=subject&index=50&key=a2k%20movement&c=c</a><br />
<a href="http://www.ebooksread.com/">http://www.ebooksread.com/</a><br />
<a href="http://digilibraries.com/ebook/surfing-the-internet">http://digilibraries.com/ebook/surfing-the-internet</a><br />
<a href="http://www.lifehack.org/articles/technology/6-powerful-text-editors-for-windows.html">[LifeHacker] 5 Most Powerful Text Editors for Windows</a><br />
<a href="https://m.youtube.com/watch?v=OA0LpRFmo7w">How to install Ubuntu inside Windows 10, 8.1 with Wubi + ISO</a><br />
<a href="https://www.youtube.com/watch?v=FtnB_hDhcf8">Octoroit VBOS video</a><br />
<a href="http://docs.ludost.net/Programming%20and%20Software%20Development/C%20and%20C%2B%2B/">C++ Misc Programming FTP Listing [Traverse Dir]</a><br />
<a href="https://github.com/haseebr/competitive-programming/raw/master/Materials/Introduction%20to%20Algorithms%20-%203rd%20Edition.pdf">Algorithms eBooks</a><br />
<a href="https://repo.palkeo.com/repositories/mirror7.meh.or.id/Embedded/">Misc Computing FTP Listing [Traverse Dir]</a><br />
<br />
<br />
<img src="blueline.gif" alt="HRule bluebar" height="10" width="100%" />
<br />
<a href="http://www.pearltrees.com/alias1/reverse-engineering-security/id10000845#item97137384">http://www.pearltrees.com/alias1/reverse-engineering-security/id10000845#item97137384</a><br />
<a href="http://www.pearltrees.com/t/computer/cracking/id2936528">http://www.pearltrees.com/t/computer/cracking/id2936528</a><br />
<a href="http://www.pearltrees.com/ronsheely/disassembler/id7007988">http://www.pearltrees.com/ronsheely/disassembler/id7007988</a><br />
<a href="http://www.pearltrees.com/synesthesia/warez-sites/id13277800">http://www.pearltrees.com/synesthesia/warez-sites/id13277800</a><br />
<a href="http://www.pearltrees.com/joaorbraposo/security-software/id12463546">http://www.pearltrees.com/joaorbraposo/security-software/id12463546</a><br />
<a href="http://www.pearltrees.com/knoweat.dp/c/id8783157">http://www.pearltrees.com/knoweat.dp/c/id8783157</a><br />
<a href="http://www.pearltrees.com/jal/disassembler-tools/id4435575">http://www.pearltrees.com/jal/disassembler-tools/id4435575</a><br />
<a href="http://www.pearltrees.com/assaf/vb-net/id3048791">http://www.pearltrees.com/assaf/vb-net/id3048791</a><br />
<a href="http://www.pearltrees.com/cristinam.moralesmojica/programming-stuff/id12071103">http://www.pearltrees.com/cristinam.moralesmojica/programming-stuff/id12071103</a><br />
chain of responsibility<br />
<br />
<a href="http://www.pearltrees.com/alias1/reverse-engineering-security/id10000845#item97137384">http://www.pearltrees.com/alias1/reverse-engineering-security/id10000845#item97137384</a><br />
<a href="http://www.pearltrees.com/t/computer/cracking/id2936528">http://www.pearltrees.com/t/computer/cracking/id2936528</a><br />
<br />
<a href="http://resources.infosecinstitute.com/reverse-engineering-ollydbg/">http://resources.infosecinstitute.com/reverse-engineering-ollydbg/</a><br />
<br />
<a href="http://resources.infosecinstitute.com/unpacking-reversing-patching/">http://resources.infosecinstitute.com/unpacking-reversing-patching/</a><br />
<a href="http://resources.infosecinstitute.com/three-ways-to-defeat-a-reverseme/">http://resources.infosecinstitute.com/three-ways-to-defeat-a-reverseme/</a><br />
<a href="http://resources.infosecinstitute.com/reverse-engineering-tools/">http://resources.infosecinstitute.com/reverse-engineering-tools/</a><br />
<a href="http://resources.infosecinstitute.com/reverse-engineering-ollydbg/">http://resources.infosecinstitute.com/reverse-engineering-ollydbg/</a><br />
IDA Pro<br />
<a href="http://resources.infosecinstitute.com/basics-of-ida-pro-2/">http://resources.infosecinstitute.com/basics-of-ida-pro-2/</a><br />
<a href="http://resources.infosecinstitute.com/ida-idc-sdk-remote-debugging-overview/#article">http://resources.infosecinstitute.com/ida-idc-sdk-remote-debugging-overview/#article</a><br />
<a href="http://resources.infosecinstitute.com/ida-configuration-options/#article">http://resources.infosecinstitute.com/ida-configuration-options/#article</a><br />
<a href="http://resources.infosecinstitute.com/ida-program-patching/#article">http://resources.infosecinstitute.com/ida-program-patching/#article</a><br />
—<br />
CrackMe<br />
<a href="http://resources.infosecinstitute.com/crackme-part-1/">http://resources.infosecinstitute.com/crackme-part-1/</a><br />
<a href="http://resources.infosecinstitute.com/crackme-part-2/">http://resources.infosecinstitute.com/crackme-part-2/</a><br />
<a href="http://resources.infosecinstitute.com/crackme-part-3/">http://resources.infosecinstitute.com/crackme-part-3/</a><br />
<a href="http://resources.infosecinstitute.com/crack-me-part-4/">http://resources.infosecinstitute.com/crack-me-part-4/</a><br />
—<br />
<a href="http://resources.infosecinstitute.com/reverse-engineering-obfuscated-assemblies/">http://resources.infosecinstitute.com/reverse-engineering-obfuscated-assemblies/</a><br />
<a href="http://resources.infosecinstitute.com/patching-net-binary-code-with-cff-explorer/">http://resources.infosecinstitute.com/patching-net-binary-code-with-cff-explorer/</a><br />
<a href="http://resources.infosecinstitute.com/net-assembly-programming/">http://resources.infosecinstitute.com/net-assembly-programming/</a><br />
<a href="http://resources.infosecinstitute.com/net-reverse-engineering-1cil-programming/">http://resources.infosecinstitute.com/net-reverse-engineering-1cil-programming/</a><br />
<a href="http://resources.infosecinstitute.com/net-reverse-engineering-part-2/">http://resources.infosecinstitute.com/net-reverse-engineering-part-2/</a><br />
<a href="http://resources.infosecinstitute.com/net-reverse-engineering-3/">http://resources.infosecinstitute.com/net-reverse-engineering-3/</a><br />
<a href="http://resources.infosecinstitute.com/extreme-net-reverse-engineering-4/">http://resources.infosecinstitute.com/extreme-net-reverse-engineering-4/</a><br />
<a href="http://resources.infosecinstitute.com/extreme-net-reverse-engineering-5/">http://resources.infosecinstitute.com/extreme-net-reverse-engineering-5/</a><br />
<a href="http://resources.infosecinstitute.com/reverse-engineering-reflector/">http://resources.infosecinstitute.com/reverse-engineering-reflector/</a><br />