-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrashinfo.txt
4302 lines (1986 loc) · 130 KB
/
crashinfo.txt
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
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x6B72614D EBX: 0x06592973 ECX: 0x7FFFFFFE EDX: 0x0019F3ED
ESI: 0x0019F050 EDI: 0x0019F81C EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x06592970 0x00453E37
+0010: 0x0019F0B1 0x00000173 0x00000001 0x00000007
+0020: 0x00000000 0x6500A8C0 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x6500A8C0
+0040: 0x00000006 0x00000000 0x6B72614D 0xFFFFFFFF
+0050: 0x00000000 0x746F672F 0x72616D6F 0x0000006B
+0060: 0x00455C49 0x0019F0A0 0x00000001 0x00000008
+0070: 0x00000003 0x6500A8C0 0x0000F3B9 0x00455C6D
+0080: 0x00000000 0x00000001 0x004B0618 0x6500F3B9
+0090: 0x00000173 0x00000800 0x00000000 0x0019F0B1
+00A0: 0xCA5D1401 0x00E03F00 0x0040C41C 0x2EAC0900
+00B0: 0x0E44674D 0x2F498E6A 0x24292909 0x1D043D1E
+00C0: 0x5D1D1E9C 0x1D041C1E 0x1EFDDCFD 0x20E41FDD
+00D0: 0x724229E1 0x007C0040 0x0019F1B0 0x00000003
+00E0: 0x000000B7 0x7243CC41 0xFF5ECF5D 0x0019F1A0
+00F0: 0x72422F46 0x72422EE8 0xFF5ECE01 0x00001000
+0100: 0x02620000 0x72422F29 0x02A764D0 0x00000009
+0110: 0x00000000 0x00000000 0x00000017 0x009A05F0
+0120: 0x7FE90000 0x00000000 0xFFFFFBFF 0x000000B7
+0130: 0x0019F1B0 0x0100007F 0x00000000 0x00000000
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x771F0000 - 0x7737E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x73FC0000 - 0x74090000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76510000 - 0x766D2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72420000 - 0x724BA000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
SHELL32.dll A: 0x74AB0000 - 0x75DF8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x76B30000 - 0x76BED000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x768F0000 - 0x76929000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x74990000 - 0x74AA8000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x76D40000 - 0x76DCC000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x76450000 - 0x76510000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x73CC0000 - 0x73CE0000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x73CB0000 - 0x73CBA000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x73D70000 - 0x73DC7000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x769C0000 - 0x76A01000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75E80000 - 0x760B8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74090000 - 0x74614000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x766E0000 - 0x76757000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x74940000 - 0x74985000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x73DD0000 - 0x73DF1000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x73E60000 - 0x73FB9000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x73CE0000 - 0x73D59000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74800000 - 0x7493C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x76A10000 - 0x76A26000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x762D0000 - 0x762DE000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x76210000 - 0x76255000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75E70000 - 0x75E80000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x724C0000 - 0x724C8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76260000 - 0x762C7000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x73BD0000 - 0x73BF4000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x73AA0000 - 0x73AC3000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72830000 - 0x7287E000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73810000 - 0x73821000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x737F0000 - 0x73806000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x67070000 - 0x67083000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72590000 - 0x7260F000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76760000 - 0x76767000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x73B10000 - 0x73B3F000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x737E0000 - 0x737EB000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x73A80000 - 0x73A98000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x6BDD0000 - 0x6BDD8000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x6B72614D EBX: 0x064C6B73 ECX: 0x7FFFFFFE EDX: 0x0019F3ED
ESI: 0x0019F050 EDI: 0x0019F81C EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x064C6B40 0x00453E37
+0010: 0x0019F0B1 0x00000173 0x00000001 0x00000007
+0020: 0x00000000 0x6500A8C0 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x6500A8C0
+0040: 0x00000006 0x00000000 0x6B72614D 0xFFFFFFFF
+0050: 0x00000000 0x746F672F 0x72616D6F 0x0000006B
+0060: 0x00455C49 0x0019F0A0 0x00000001 0x00000008
+0070: 0x00000003 0x6500A8C0 0x0000C50A 0x00455C6D
+0080: 0x00000000 0x00000001 0x004B0618 0x6500C50A
+0090: 0x00000173 0x00000800 0x00000000 0x0019F0B1
+00A0: 0xCA5D1401 0x00E03F00 0x0040C41C 0x2EAC0900
+00B0: 0x0E44674D 0x2F498E6A 0x24292909 0x1D043D1E
+00C0: 0x5D1D1E9C 0x1D041C1E 0x1EFDDCFD 0x20E41FDD
+00D0: 0x00000000 0x7FE90000 0x0019F10C 0x7723475F
+00E0: 0x143F2E6B 0x00000048 0x0000020B 0x0019F300
+00F0: 0x03F12F88 0x000001FF 0xFFFFFDF5 0x0019F1C4
+0100: 0x72422E1E 0x000000B7 0xC20001C3 0xAB2D4E51
+0110: 0x0019F1C4 0x72422F46 0x02000002 0xAB2D4EB5
+0120: 0x0800040C 0xFFFFFD36 0x00000142 0xFFFFFDB7
+0130: 0x03F11D68 0x0000007F 0xFFFFFC75 0x00000000
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x771F0000 - 0x7737E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x73FC0000 - 0x74090000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76510000 - 0x766D2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72420000 - 0x724BA000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
SHELL32.dll A: 0x74AB0000 - 0x75DF8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x76B30000 - 0x76BED000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x768F0000 - 0x76929000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x74990000 - 0x74AA8000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x76D40000 - 0x76DCC000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x76450000 - 0x76510000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x73CC0000 - 0x73CE0000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x73CB0000 - 0x73CBA000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x73D70000 - 0x73DC7000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x769C0000 - 0x76A01000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75E80000 - 0x760B8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74090000 - 0x74614000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x766E0000 - 0x76757000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x74940000 - 0x74985000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x73DD0000 - 0x73DF1000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x73E60000 - 0x73FB9000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x73CE0000 - 0x73D59000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74800000 - 0x7493C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x76A10000 - 0x76A26000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x762D0000 - 0x762DE000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x76210000 - 0x76255000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75E70000 - 0x75E80000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x724C0000 - 0x724C8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76260000 - 0x762C7000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x73BD0000 - 0x73BF4000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x73AA0000 - 0x73AC3000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72830000 - 0x7287E000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73810000 - 0x73821000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x737F0000 - 0x73806000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x67070000 - 0x67083000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72590000 - 0x7260F000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76760000 - 0x76767000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x73B10000 - 0x73B3F000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x737E0000 - 0x737EB000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x73A80000 - 0x73A98000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x6BDD0000 - 0x6BDD8000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x6B72614D EBX: 0x0655FB73 ECX: 0x7FFFFFFE EDX: 0x0019F3ED
ESI: 0x0019F050 EDI: 0x0019F81C EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x0655FB48 0x00453E37
+0010: 0x0019F0B1 0x00000173 0x00000001 0x00000007
+0020: 0x00000000 0x6500A8C0 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x6500A8C0
+0040: 0x00000006 0x00000000 0x6B72614D 0xFFFFFFFF
+0050: 0x00000000 0x746F672F 0x72616D6F 0x0000006B
+0060: 0x00455C49 0x0019F0A0 0x00000001 0x00000008
+0070: 0x00000003 0x6500A8C0 0x0000D31D 0x00455C6D
+0080: 0x00000000 0x00000001 0x004B0618 0x6500D31D
+0090: 0x00000173 0x00000800 0x00000000 0x0019F0B1
+00A0: 0xCA5D1401 0x00E03F00 0x0040C41C 0x2EAC0900
+00B0: 0x0E44674D 0x2F498E6A 0x24292909 0x1D043D1E
+00C0: 0x5D1D1E9C 0x1D041C1E 0x1EFDDCFD 0x20E41FDD
+00D0: 0x00000000 0x7FE90000 0x0019F10C 0x7723475F
+00E0: 0x3241941E 0x00000400 0x005E0000 0x0019F300
+00F0: 0x00000042 0x77245679 0x00A305F0 0x0019F1C4
+0100: 0x72422E1E 0x000000B7 0x7243CC41 0xD46CDCEA
+0110: 0x0019F1C4 0x72422F46 0x72422EE8 0xD46CDC0E
+0120: 0x00000140 0xFFFFFD36 0x00000142 0xFFFFFDB7
+0130: 0x03FB1D68 0x0000007F 0xFFFFFC75 0x00000000
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x771F0000 - 0x7737E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x73FC0000 - 0x74090000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x76510000 - 0x766D2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72420000 - 0x724BA000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
SHELL32.dll A: 0x74AB0000 - 0x75DF8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x76B30000 - 0x76BED000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x768F0000 - 0x76929000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x74990000 - 0x74AA8000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x76D40000 - 0x76DCC000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x76450000 - 0x76510000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x73CC0000 - 0x73CE0000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x73CB0000 - 0x73CBA000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x73D70000 - 0x73DC7000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x769C0000 - 0x76A01000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75E80000 - 0x760B8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74090000 - 0x74614000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x766E0000 - 0x76757000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x74940000 - 0x74985000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x73DD0000 - 0x73DF1000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x73E60000 - 0x73FB9000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x73CE0000 - 0x73D59000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74800000 - 0x7493C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x76A10000 - 0x76A26000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x762D0000 - 0x762DE000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x76210000 - 0x76255000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75E70000 - 0x75E80000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x724C0000 - 0x724C8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76260000 - 0x762C7000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x73BD0000 - 0x73BF4000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x73AA0000 - 0x73AC3000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72830000 - 0x7287E000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73810000 - 0x73821000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x737F0000 - 0x73806000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x67070000 - 0x67083000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72590000 - 0x7260F000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76760000 - 0x76767000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x73B10000 - 0x73B3F000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x737E0000 - 0x737EB000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x73A80000 - 0x73A98000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x6BDD0000 - 0x6BDD8000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x6B72614D EBX: 0x064F9B73 ECX: 0x7FFFFFFE EDX: 0x0019F3ED
ESI: 0x0019F050 EDI: 0x0019F81C EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x064F9B48 0x0019F194
+0010: 0x00000000 0x00453E37 0x0019F0B9 0x00000007
+0020: 0x00000000 0x00000008 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x00000138
+0040: 0x00000006 0x00000000 0x6B72614D 0xFFFFFFFF
+0050: 0x00000000 0x616D6F74 0x00006B72 0x6500A8C0
+0060: 0x0000F619 0x00000000 0x00455C49 0x0019F0A8
+0070: 0x00000001 0x00000008 0x00000003 0x6500A8C0
+0080: 0x0000F619 0x00455C6D 0x00000000 0x00000001
+0090: 0x004B0618 0x6500F619 0x0000015B 0x00000800
+00A0: 0x00000000 0x0019F0B9 0xC75D1401 0x00E03F00
+00B0: 0x00E0C31C 0x2EAC0900 0x0E44674D 0x2F498E6A
+00C0: 0x043D1E04 0x1D1E9C1D 0x041C1E5D 0xFDDCFD1D
+00D0: 0xE41FDD1E 0xFFFFFF20 0x029D1B40 0x0000000D
+00E0: 0xFFFFFBC2 0x0000014B 0x0000024C 0x0000001C
+00F0: 0x03F42D80 0x000001FF 0xFFFFFDB4 0x01000100
+0100: 0x02000002 0x00000000 0x00000101 0x0000002F
+0110: 0x007000C0 0x00700288 0x02000002 0x00611C78
+0120: 0x4900044D 0x00000010 0x72D0E734 0x00000098
+0130: 0x0019F1F0 0x00D50000 0x0000002F 0x00000000
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x77B80000 - 0x77D0E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x74990000 - 0x74A60000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x74AE0000 - 0x74CA2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72CF0000 - 0x72D8A000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
apphelp.dll A: 0x72C50000 - 0x72CE3000 (C:\Windows\SYSTEM32\apphelp.dll)
SHELL32.dll A: 0x75860000 - 0x76BA8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x77240000 - 0x772FD000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x746B0000 - 0x746E9000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x75240000 - 0x75358000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x747B0000 - 0x7483C000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x77180000 - 0x77240000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74650000 - 0x74670000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74640000 - 0x7464A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x77610000 - 0x77667000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x755B0000 - 0x755F1000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75370000 - 0x755A8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74CB0000 - 0x75234000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x74A60000 - 0x74AD7000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x75660000 - 0x756A5000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x746F0000 - 0x74711000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76FD0000 - 0x77129000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x77590000 - 0x77609000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74840000 - 0x7497C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x779B0000 - 0x779C6000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x74980000 - 0x7498E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x77130000 - 0x77175000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75830000 - 0x75840000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x734B0000 - 0x734B8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x77300000 - 0x77367000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x74560000 - 0x74584000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x74430000 - 0x74453000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72FB0000 - 0x72FFE000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73480000 - 0x73491000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x73430000 - 0x73446000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x73410000 - 0x73423000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72F30000 - 0x72FAF000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x777F0000 - 0x777F7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x744A0000 - 0x744CF000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x73470000 - 0x7347B000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x74400000 - 0x74418000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x73400000 - 0x73408000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x6B72614D EBX: 0x0654BC73 ECX: 0x7FFFFFFE EDX: 0x0019F3ED
ESI: 0x0019F050 EDI: 0x0019F81C EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x0654BC9C 0x0019F0B0
+0010: 0x0081D660 0x0019F19C 0x00000000 0x00000007
+0020: 0x00000000 0x0000010C 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x00000000
+0040: 0x00000006 0x00000000 0x6B72614D 0xFFFFFFFF
+0050: 0x00000000 0x616D6F74 0x00006B72 0x00000008
+0060: 0x00000003 0x6500A8C0 0x0000C4A9 0x00000000
+0070: 0x00455C49 0x0019F0B0 0x00000001 0x00000008
+0080: 0x00000003 0x6500A8C0 0x0000C4A9 0x00455C6D
+0090: 0x00000000 0x00000001 0x004B0618 0x6500C4A9
+00A0: 0x0000010C 0x00000800 0x00000000 0x0019F0C1
+00B0: 0xEF5D1401 0x0B2CFC0F 0x000060F1 0x0F822E0D
+00C0: 0x7E0E821E 0x3FBF3E0E 0x0ED25E8E 0x0F7E0F22
+00D0: 0xE4E0022E 0xFFFFFF20 0x0081EF68 0x0000000D
+00E0: 0xFFFFFC03 0x00000048 0x0000020B 0x0000002A
+00F0: 0x03FA2F88 0x000001FF 0xFFFFFDF5 0x01000100
+0100: 0x02000002 0x00686188 0xC20001C3 0x0000003D
+0110: 0x008700C0 0x00870288 0x02000002 0x00665460
+0120: 0x0800040C 0x00000002 0x72D0E734 0x00000098
+0130: 0x0019F1F0 0x00810000 0x0000003D 0x00000000
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x77B80000 - 0x77D0E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x74990000 - 0x74A60000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x74AE0000 - 0x74CA2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72CF0000 - 0x72D8A000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
SHELL32.dll A: 0x75860000 - 0x76BA8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x77240000 - 0x772FD000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x746B0000 - 0x746E9000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x75240000 - 0x75358000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x747B0000 - 0x7483C000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x77180000 - 0x77240000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74650000 - 0x74670000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74640000 - 0x7464A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x77610000 - 0x77667000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x755B0000 - 0x755F1000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75370000 - 0x755A8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74CB0000 - 0x75234000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x74A60000 - 0x74AD7000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x75660000 - 0x756A5000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x746F0000 - 0x74711000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76FD0000 - 0x77129000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x77590000 - 0x77609000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74840000 - 0x7497C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x779B0000 - 0x779C6000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x74980000 - 0x7498E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x77130000 - 0x77175000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75830000 - 0x75840000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x734B0000 - 0x734B8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x77300000 - 0x77367000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x74560000 - 0x74584000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x74430000 - 0x74453000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72FB0000 - 0x72FFE000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73480000 - 0x73491000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x73430000 - 0x73446000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x73410000 - 0x73423000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72F30000 - 0x72FAF000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x777F0000 - 0x777F7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x744A0000 - 0x744CF000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x73470000 - 0x7347B000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x74400000 - 0x74418000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x73400000 - 0x73408000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x6B72614D EBX: 0x064F7D73 ECX: 0x7FFFFFFE EDX: 0x0019F3ED
ESI: 0x0019F050 EDI: 0x0019F81C EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x064F7D80 0x0019F194
+0010: 0x00000000 0x00453E37 0x0019F0B9 0x00000007
+0020: 0x00000000 0x00000008 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x00000138
+0040: 0x00000006 0x00000000 0x6B72614D 0xFFFFFFFF
+0050: 0x00000000 0x616D6F74 0x00006B72 0x6500A8C0
+0060: 0x0000C978 0x00000000 0x00455C49 0x0019F0A8
+0070: 0x00000001 0x00000008 0x00000003 0x6500A8C0
+0080: 0x0000C978 0x00455C6D 0x00000000 0x00000001
+0090: 0x004B0618 0x6500C978 0x0000015B 0x00000800
+00A0: 0x00000000 0x0019F0B9 0xC75D1401 0x00E03F00
+00B0: 0x00E0C31C 0x2EAC0900 0x0E44674D 0x2F498E6A
+00C0: 0x043D1E04 0x1D1E9C1D 0x041C1E5D 0xFDDCFD1D
+00D0: 0xE41FDD1E 0xFFFFFF20 0x0052EF68 0x0000000D
+00E0: 0xFFFFFC03 0x0019F150 0x02000002 0x0000002A
+00F0: 0x0800040C 0x008A0000 0x00000000 0x01000100
+0100: 0x02000002 0x005B6188 0x0800040C 0x0000003D
+0110: 0x008A00C0 0x008A0288 0x00000002 0x00595460
+0120: 0x2D00002D 0x00000002 0x72D0E734 0x00000098
+0130: 0x0019F1F0 0x00520000 0x0000003D 0x00000000
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x77B80000 - 0x77D0E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x74990000 - 0x74A60000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x74AE0000 - 0x74CA2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72CF0000 - 0x72D8A000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
SHELL32.dll A: 0x75860000 - 0x76BA8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x77240000 - 0x772FD000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x746B0000 - 0x746E9000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x75240000 - 0x75358000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x747B0000 - 0x7483C000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x77180000 - 0x77240000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74650000 - 0x74670000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74640000 - 0x7464A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x77610000 - 0x77667000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x755B0000 - 0x755F1000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75370000 - 0x755A8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74CB0000 - 0x75234000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x74A60000 - 0x74AD7000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x75660000 - 0x756A5000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x746F0000 - 0x74711000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76FD0000 - 0x77129000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x77590000 - 0x77609000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74840000 - 0x7497C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x779B0000 - 0x779C6000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x74980000 - 0x7498E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x77130000 - 0x77175000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75830000 - 0x75840000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x734B0000 - 0x734B8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x77300000 - 0x77367000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x74560000 - 0x74584000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x74430000 - 0x74453000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72FB0000 - 0x72FFE000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73480000 - 0x73491000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x73430000 - 0x73446000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x73410000 - 0x73423000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72F30000 - 0x72FAF000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x777F0000 - 0x777F7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x744A0000 - 0x744CF000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x73470000 - 0x7347B000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x74400000 - 0x74418000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x73400000 - 0x73408000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x6B72614D EBX: 0x06437D73 ECX: 0x7FFFFFFE EDX: 0x0019F3ED
ESI: 0x0019F050 EDI: 0x0019F81C EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x06437D80 0x00000022
+0010: 0x0049916C 0x00000022 0x00000001 0x00000007
+0020: 0x00000000 0x0019F0C8 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x0000010C
+0040: 0x00000006 0x00000000 0x6B72614D 0xFFFFFFFF
+0050: 0x00000000 0x616D6F74 0x00006B72 0x000000F0
+0060: 0x00A1D660 0x6500A8C0 0x0045A915 0x0019F0C8
+0070: 0x00000001 0x00000008 0x00000003 0x6500A8C0
+0080: 0x0000FE34 0x00000000 0x00455C49 0x0019F0C8
+0090: 0x00000001 0x00000008 0x00000003 0x6500A8C0
+00A0: 0x0000FE34 0x00455C6D 0x00000000 0x00000001
+00B0: 0x004B0618 0x6500FE34 0x0000010C 0x00000800
+00C0: 0x00000000 0x0019F0D9 0xEF5D1401 0x0B2CFC0F
+00D0: 0x000060F1 0x0F822E0D 0x7E0E821E 0x3FBF3E0E
+00E0: 0x0ED25E8E 0x0F7E0F22 0x46E0022E 0x000000E0
+00F0: 0x00497546 0x00000003 0x0000001F 0x00000000
+0100: 0x00000001 0x00000003 0x00A10284 0x02910000
+0110: 0x02000002 0x00A10000 0x00000000 0x00000003
+0120: 0x00000080 0x00000010 0x00A100C0 0x00A10284
+0130: 0x7D303046 0x0293D978 0x20444F4D 0x029164D0
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x77B80000 - 0x77D0E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x74990000 - 0x74A60000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x74AE0000 - 0x74CA2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72CF0000 - 0x72D8A000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
SHELL32.dll A: 0x75860000 - 0x76BA8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x77240000 - 0x772FD000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x746B0000 - 0x746E9000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x75240000 - 0x75358000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x747B0000 - 0x7483C000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x77180000 - 0x77240000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74650000 - 0x74670000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74640000 - 0x7464A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x77610000 - 0x77667000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x755B0000 - 0x755F1000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75370000 - 0x755A8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74CB0000 - 0x75234000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x74A60000 - 0x74AD7000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x75660000 - 0x756A5000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x746F0000 - 0x74711000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76FD0000 - 0x77129000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x77590000 - 0x77609000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74840000 - 0x7497C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x779B0000 - 0x779C6000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x74980000 - 0x7498E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x77130000 - 0x77175000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75830000 - 0x75840000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x734B0000 - 0x734B8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x77300000 - 0x77367000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x74560000 - 0x74584000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x74430000 - 0x74453000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72FB0000 - 0x72FFE000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73480000 - 0x73491000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x73430000 - 0x73446000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x73410000 - 0x73423000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72F30000 - 0x72FAF000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x777F0000 - 0x777F7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x744A0000 - 0x744CF000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x73470000 - 0x7347B000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x74400000 - 0x74418000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x73400000 - 0x73408000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x77BC08A0 Module: (ntdll.dll)
Registers:
EAX: 0x0019E124 EBX: 0x0019FCA8 ECX: 0x0019FBE4 EDX: 0x30303120
ESI: 0x00A10000 EDI: 0x00000000 EBP: 0x0019E0F8 ESP: 0x0019E0B8
EFLAGS: 0x00010246
Stack:
+0000: 0x004BBDE0 0x30303120 0x0019FCA8 0x008C0230
+0010: 0x203A0000 0x00000000 0x008C01F0 0x00000000
+0020: 0x0000002F 0x0019E140 0x0019E120 0x72CFCA4D
+0030: 0x72D80188 0x72CFCA29 0x20BC5390 0x0019E174
+0040: 0x0019E134 0x00497541 0x00A10000 0x00000000
+0050: 0x30303120 0x004BBDE0 0xFFFFFFFF 0x0019FCA8
+0060: 0x52722018 0x0019E10C 0x0019D6D4 0x0019E18C
+0070: 0x0049B938 0x004B64F8 0xFFFFFFFF 0x0019FCB4
+0080: 0x0044E119 0x30303120 0x004A1D27 0x004BBDE0
+0090: 0xFFFFFFFF 0x0019E15C 0x004BBDD8 0x0019FCA8
+00A0: 0x0019FCB4 0x0019E19C 0x004A14C8 0x004A8C10
+00B0: 0x0019FCA8 0x00000103 0x19930520 0x004BBDE0
+00C0: 0x00000000 0xFFFFFFFF 0x00000000 0x0019E170
+00D0: 0x0019D6D4 0x0019E20C 0x0049B938 0x004BA708
+00E0: 0x00000001 0x0019E1BC 0x004A1C36 0x0019FCA8
+00F0: 0x0019E274 0x004BBDE0 0xFFFFFFFF 0x00000000
+0100: 0x00000000 0x0019E1F4 0x0049928C 0x0019E2C8
+0110: 0x0019FCA8 0x0019E318 0x0019E274 0x004BBDE0
+0120: 0x00000000 0x00000000 0x00000000 0x00000000
+0130: 0x00000000 0x00000000 0x004BBDE0 0x0019E218
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x77B80000 - 0x77D0E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x74990000 - 0x74A60000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x74AE0000 - 0x74CA2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72CF0000 - 0x72D8A000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
SHELL32.dll A: 0x75860000 - 0x76BA8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x77240000 - 0x772FD000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x746B0000 - 0x746E9000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x75240000 - 0x75358000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x747B0000 - 0x7483C000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x77180000 - 0x77240000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74650000 - 0x74670000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74640000 - 0x7464A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x77610000 - 0x77667000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x755B0000 - 0x755F1000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75370000 - 0x755A8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74CB0000 - 0x75234000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x74A60000 - 0x74AD7000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x75660000 - 0x756A5000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x746F0000 - 0x74711000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76FD0000 - 0x77129000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x77590000 - 0x77609000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74840000 - 0x7497C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x779B0000 - 0x779C6000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x74980000 - 0x7498E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x77130000 - 0x77175000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75830000 - 0x75840000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x734B0000 - 0x734B8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x77300000 - 0x77367000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x74560000 - 0x74584000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x74430000 - 0x74453000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72FB0000 - 0x72FFE000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73480000 - 0x73491000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x73430000 - 0x73446000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x73410000 - 0x73423000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72F30000 - 0x72FAF000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x777F0000 - 0x777F7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x744A0000 - 0x744CF000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x73470000 - 0x7347B000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x74400000 - 0x74418000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x73400000 - 0x73408000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x6B72614D EBX: 0x065A7A73 ECX: 0x7FFFFFFE EDX: 0x0019F3ED
ESI: 0x0019F050 EDI: 0x0019F81C EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x065A7AB8 0x0019F194
+0010: 0x00000000 0x00453E37 0x0019F0B9 0x00000007
+0020: 0x00000000 0x00000008 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x00000138
+0040: 0x00000006 0x00000000 0x6B72614D 0xFFFFFFFF
+0050: 0x00000000 0x616D6F74 0x00006B72 0x6500A8C0
+0060: 0x0000DEC3 0x00000000 0x00455C49 0x0019F0A8
+0070: 0x00000001 0x00000008 0x00000003 0x6500A8C0
+0080: 0x0000DEC3 0x00455C6D 0x00000000 0x00000001
+0090: 0x004B0618 0x6500DEC3 0x0000015B 0x00000800
+00A0: 0x00000000 0x0019F0B9 0xC75D1401 0x00E03F00
+00B0: 0x00E0C31C 0x2EAC0900 0x0E44674D 0x2F498E6A
+00C0: 0x043D1E04 0x1D1E9C1D 0x041C1E5D 0xFDDCFD1D
+00D0: 0xE41FDD1E 0x7FE90020 0x0019F10C 0x77BC475F
+00E0: 0x6BE03B8A 0x00000400 0x02730000 0x0019F300
+00F0: 0x00000042 0x77BD5679 0x009B05F0 0x0019F1C4
+0100: 0x72CF2E1E 0x000000B7 0x72D0CC41 0xFF1E90DA
+0110: 0x0019F1C4 0x72CF2F46 0x72CF2EE8 0xFF1E903E
+0120: 0x0000003F 0xFFFFFC35 0x00000041 0xFFFFFFC1
+0130: 0x03FF2570 0x0000007F 0xFFFFFC75 0x00000000
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x77B80000 - 0x77D0E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x74990000 - 0x74A60000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x74AE0000 - 0x74CA2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72CF0000 - 0x72D8A000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
SHELL32.dll A: 0x75860000 - 0x76BA8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x77240000 - 0x772FD000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x746B0000 - 0x746E9000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x75240000 - 0x75358000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x747B0000 - 0x7483C000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x77180000 - 0x77240000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74650000 - 0x74670000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74640000 - 0x7464A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x77610000 - 0x77667000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x755B0000 - 0x755F1000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75370000 - 0x755A8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74CB0000 - 0x75234000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x74A60000 - 0x74AD7000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x75660000 - 0x756A5000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x746F0000 - 0x74711000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76FD0000 - 0x77129000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x77590000 - 0x77609000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74840000 - 0x7497C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x779B0000 - 0x779C6000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x74980000 - 0x7498E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x77130000 - 0x77175000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75830000 - 0x75840000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x734B0000 - 0x734B8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x77300000 - 0x77367000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x74560000 - 0x74584000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x74430000 - 0x74453000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72FB0000 - 0x72FFE000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73480000 - 0x73491000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x73430000 - 0x73446000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x73410000 - 0x73423000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72F30000 - 0x72FAF000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x777F0000 - 0x777F7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x744A0000 - 0x744CF000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x73470000 - 0x7347B000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x74400000 - 0x74418000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x73400000 - 0x73408000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x6B72614D EBX: 0x0643BA73 ECX: 0x7FFFFFFE EDX: 0x0019F3ED
ESI: 0x0019F050 EDI: 0x0019F81C EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x0643BA34 0x0019F194
+0010: 0x00000000 0x00453E37 0x0019F0B9 0x00000007
+0020: 0x00000000 0x00000008 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x00000138
+0040: 0x00000006 0x00000000 0x6B72614D 0xFFFFFFFF
+0050: 0x00000000 0x616D6F74 0x00006B72 0x6500A8C0
+0060: 0x0000C433 0x00000000 0x00455C49 0x0019F0A8
+0070: 0x00000001 0x00000008 0x00000003 0x6500A8C0
+0080: 0x0000C433 0x00455C6D 0x00000000 0x00000001
+0090: 0x004B0618 0x6500C433 0x0000015B 0x00000800
+00A0: 0x00000000 0x0019F0B9 0xC75D1401 0x00E03F00
+00B0: 0x00E0C31C 0x2EAC0900 0x0E44674D 0x2F498E6A
+00C0: 0x043D1E04 0x1D1E9C1D 0x041C1E5D 0xFDDCFD1D
+00D0: 0xE41FDD1E 0x7FE90020 0x0019F10C 0x77BC475F
+00E0: 0xDE8D3FA7 0x00000400 0x00690000 0x0019F300
+00F0: 0x00000042 0x77BD5679 0x009E05F0 0x0019F1C4
+0100: 0x72CF2E1E 0x000000B7 0x72D0CC41 0xA93368A6
+0110: 0x0019F1C4 0x72CF2F46 0x72CF2EE8 0xA9336842
+0120: 0x00000140 0xFFFFFD36 0x00000142 0xFFFFFDB7
+0130: 0x03E81D68 0x0000007F 0xFFFFFC75 0x00000000
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Winner\Desktop\intense ïàïêà\samp-server.exe)
ntdll.dll A: 0x77B80000 - 0x77D0E000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x74990000 - 0x74A60000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x74AE0000 - 0x74CA2000 (C:\Windows\System32\KERNELBASE.dll)
atcuf32.dll A: 0x72CF0000 - 0x72D8A000 (C:\Program Files\Bitdefender Antivirus Free\atcuf\263384369825032704\atcuf32.dll)
SHELL32.dll A: 0x75860000 - 0x76BA8000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x77240000 - 0x772FD000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x746B0000 - 0x746E9000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x75240000 - 0x75358000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x747B0000 - 0x7483C000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x77180000 - 0x77240000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x74650000 - 0x74670000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x74640000 - 0x7464A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x77610000 - 0x77667000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x755B0000 - 0x755F1000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x75370000 - 0x755A8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74CB0000 - 0x75234000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x74A60000 - 0x74AD7000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x75660000 - 0x756A5000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x746F0000 - 0x74711000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76FD0000 - 0x77129000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x77590000 - 0x77609000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x74840000 - 0x7497C000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x779B0000 - 0x779C6000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x74980000 - 0x7498E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x77130000 - 0x77175000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75830000 - 0x75840000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x734B0000 - 0x734B8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x77300000 - 0x77367000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x74560000 - 0x74584000 (C:\Windows\SYSTEM32\WINMM.dll)
WINMMBASE.dll A: 0x74430000 - 0x74453000 (C:\Windows\SYSTEM32\WINMMBASE.dll)
IMM32.DLL A: 0x74680000 - 0x746A5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x72FB0000 - 0x72FFE000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x73480000 - 0x73491000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x73430000 - 0x73446000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x73410000 - 0x73423000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x72F30000 - 0x72FAF000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x777F0000 - 0x777F7000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x744A0000 - 0x744CF000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x73470000 - 0x7347B000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x74400000 - 0x74418000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x73400000 - 0x73408000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x00401696 Module: (samp-server.exe)
Registers:
EAX: 0x0281F8F8 EBX: 0x027B5D12 ECX: 0x00000000 EDX: 0x004E7E5A
ESI: 0x0281F8F8 EDI: 0x00B69AF0 EBP: 0x75B76760 ESP: 0x0019FD90
EFLAGS: 0x00010216
Stack:
+0000: 0x00401726 0x0281F8F8 0x0019FDAC 0x00B69AF0
+0010: 0x0281F8F8 0x75B76760 0x027B5D12 0x7740295C
+0020: 0x75E88139 0x00000000 0x75E8814E 0xADBF4557
+0030: 0x75BCECB0 0x75BCEC60 0x00000000 0x027B5D12
+0040: 0x0046F2CE 0x0281F8F8 0x004B1E00 0x0019FDE8
+0050: 0x027B5D10 0x00000000 0x0044F76C 0xA9B6232E
+0060: 0x0048BF6D 0x00000000 0x004E7E4C 0x0000DDDA
+0070: 0x00000000 0x00B69AF0 0x027B5D10 0x0048E7D6
+0080: 0x027B5D10 0x75BCECB0 0x00B69AF0 0x0048E9AC
+0090: 0x75BCEC60 0x00000000 0x3BB404F2 0x0048AC5D
+00A0: 0x00000000 0x000023F0 0x0019FF80 0x00343000
+00B0: 0x00000007 0x00010101 0x000001F4 0x00001E61
+00C0: 0x0000021C 0x000006F0 0x00B69AF0 0x656D6167
+00D0: 0x65646F6D 0x00003531 0x004C0014 0x004C0010
+00E0: 0x00343000 0x004A9B60 0x0019FE68 0x0019FF70
+00F0: 0x0019FF70 0x0049B938 0x004B6698 0xFFFFFFFF
+0100: 0x00499BD1 0x00499BE1 0x004A9B60 0x0019FF70
+0110: 0x004A97D1 0xFFFFFFFF 0x0049B3D6 0x00000001
+0120: 0x00B612D8 0x00B61318 0x00000094 0x00000006
+0130: 0x00000002 0x000023F0 0x00000002 0x00000000
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Äàíèåë\Desktop\intense\samp-server.exe)
ntdll.dll A: 0x77390000 - 0x7751D000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x75B60000 - 0x75C30000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x75D90000 - 0x75F52000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x73FC0000 - 0x75309000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x76760000 - 0x7681D000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x76F60000 - 0x76F99000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x75310000 - 0x75428000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x76ED0000 - 0x76F5C000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x75430000 - 0x754F0000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x73E60000 - 0x73E80000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x73E50000 - 0x73E5A000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x75A70000 - 0x75AC7000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x757C0000 - 0x75801000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x76FA0000 - 0x771D8000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x761C0000 - 0x76747000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x75F60000 - 0x75FD7000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x771E0000 - 0x77225000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x76190000 - 0x761B1000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76030000 - 0x76188000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x73F40000 - 0x73FB9000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x75680000 - 0x757BC000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x75D00000 - 0x75D16000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x76870000 - 0x7687E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x76820000 - 0x76865000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75A60000 - 0x75A70000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x73D50000 - 0x73D58000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WINMM.dll A: 0x71B80000 - 0x71BA4000 (C:\Windows\SYSTEM32\WINMM.dll)
WS2_32.dll A: 0x75C90000 - 0x75CF7000 (C:\Windows\System32\WS2_32.dll)
winmmbase.dll A: 0x71920000 - 0x71943000 (C:\Windows\SYSTEM32\winmmbase.dll)
IMM32.DLL A: 0x73E80000 - 0x73EA5000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x73E00000 - 0x73E4E000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x71410000 - 0x71421000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x6A620000 - 0x6A636000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x6A8D0000 - 0x6A8E3000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x73B60000 - 0x73BDF000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76750000 - 0x76757000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x73B30000 - 0x73B5F000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x72BF0000 - 0x72BFB000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x73D60000 - 0x73D78000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x73960000 - 0x73968000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x55464552 EBX: 0x0F3E8D73 ECX: 0x7FFFFFFE EDX: 0x0019F3F4
ESI: 0x0019F050 EDI: 0x0019F81F EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x0F3E8D84 0x00000000
+0010: 0x00000000 0x00000208 0x00B4D4D8 0x00000007
+0020: 0x00000000 0x0019F080 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x00000000
+0040: 0x0000000D 0x00000000 0x55464552 0xFFFFFFFF
+0050: 0x00000000 0x203A2930 0x6572612F 0x6C657566
+0060: 0x006C6C61 0x00000001 0x004B0618 0x7A11DF43
+0070: 0x0000022B 0x00000800 0x00000000 0x0019F091
+0080: 0xC15D1401 0xF6F65F00 0x002087B6 0xDC5D1A00
+0090: 0xFE1D045C 0xDC5DBC1C 0x1EC4BDFD 0x9EBC1C3E
+00A0: 0xC45D5C3E 0x1DA4BC1D 0xA4DCDC9D 0x1C049C1C
+00B0: 0xA49C5C3F 0x1C1EFC1C 0xBDBD9CBC 0x1C241EC4
+00C0: 0xFDBCBD3C 0xDC20A41D 0x7D1C045C 0xBC1D9DDC
+00D0: 0x28490804 0x08EA09E4 0x8B07C4A9 0x004B62A0
+00E0: 0x0019F14C 0x00000001 0x00000009 0x00000002
+00F0: 0x7A118E4E 0x0048DF43 0x00000000 0x00000000
+0100: 0x00000000 0x03D845A8 0x0019FB18 0x00000000
+0110: 0x8E4E45A8 0xDF437A11 0x004952AD 0x004B6234
+0120: 0x0019F14C 0x00000001 0x0019F010 0x00000001
+0130: 0x00B49AF0 0x0019F784 0x004A8D5B 0xFFFFFFFF
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Äàíèåë\Desktop\intense\samp-server.exe)
ntdll.dll A: 0x76F20000 - 0x770AD000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x74D60000 - 0x74E30000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x74FA0000 - 0x75162000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x75180000 - 0x764C9000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x745E0000 - 0x7469D000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x73E30000 - 0x73E69000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x76960000 - 0x76A78000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x76D50000 - 0x76DDC000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x74EE0000 - 0x74FA0000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x739F0000 - 0x73A10000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x739E0000 - 0x739EA000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76DE0000 - 0x76E37000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x76550000 - 0x76591000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x76B00000 - 0x76D38000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74050000 - 0x745D7000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x73FD0000 - 0x74047000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x76E70000 - 0x76EB5000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x76A80000 - 0x76AA1000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76770000 - 0x768C8000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x764D0000 - 0x76549000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x73E90000 - 0x73FCC000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x768D0000 - 0x768E6000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x74E30000 - 0x74E3E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x74AE0000 - 0x74B25000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75170000 - 0x75180000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x739D0000 - 0x739D8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WS2_32.dll A: 0x76600000 - 0x76667000 (C:\Windows\System32\WS2_32.dll)
WINMM.dll A: 0x6E6D0000 - 0x6E6F4000 (C:\Windows\SYSTEM32\WINMM.dll)
winmmbase.dll A: 0x6E670000 - 0x6E693000 (C:\Windows\SYSTEM32\winmmbase.dll)
IMM32.DLL A: 0x76E40000 - 0x76E65000 (C:\Windows\System32\IMM32.DLL)
mswsock.dll A: 0x73980000 - 0x739CE000 (C:\Windows\system32\mswsock.dll)
napinsp.dll A: 0x6E450000 - 0x6E461000 (C:\Windows\system32\napinsp.dll)
pnrpnsp.dll A: 0x6E430000 - 0x6E446000 (C:\Windows\system32\pnrpnsp.dll)
NLAapi.dll A: 0x6E1C0000 - 0x6E1D3000 (C:\Windows\system32\NLAapi.dll)
DNSAPI.dll A: 0x736F0000 - 0x7376F000 (C:\Windows\SYSTEM32\DNSAPI.dll)
NSI.dll A: 0x76950000 - 0x76957000 (C:\Windows\System32\NSI.dll)
IPHLPAPI.DLL A: 0x736C0000 - 0x736EF000 (C:\Windows\SYSTEM32\IPHLPAPI.DLL)
winrnr.dll A: 0x6E420000 - 0x6E42B000 (C:\Windows\System32\winrnr.dll)
bcrypt.dll A: 0x738E0000 - 0x738F8000 (C:\Windows\SYSTEM32\bcrypt.dll)
rasadhlp.dll A: 0x736B0000 - 0x736B8000 (C:\Windows\System32\rasadhlp.dll)
--------------------------
SA-MP Server: 0.3.7
Exception At Address: 0x0049C33C Module: (samp-server.exe)
Registers:
EAX: 0x55464552 EBX: 0x0F3C0D73 ECX: 0x7FFFFFFE EDX: 0x0019F3F4
ESI: 0x0019F050 EDI: 0x0019F81F EBP: 0x0019F09C ESP: 0x0019F010
EFLAGS: 0x00010202
Stack:
+0000: 0x0019F7E8 0x0019F3E8 0x0F3C0D84 0x001F01D0
+0010: 0x00000005 0x001F0000 0x00000020 0x00000007
+0020: 0x00000000 0x001F0CA8 0x00000000 0x00000000
+0030: 0x00000000 0x00000000 0x00000000 0x00000000
+0040: 0x0000000D 0x00000000 0x55464552 0xFFFFFFFF
+0050: 0x00000000 0x203A2930 0x6572612F 0x6C657566
+0060: 0x006C6C61 0x038494F8 0x0019F098 0x76F597DE
+0070: 0x03DB21A8 0x76F597DE 0x00000000 0x00000000
+0080: 0x00000025 0x03DB1EE8 0x0019F0D4 0x00497486
+0090: 0x02360000 0x00000000 0x0049748B 0x0019F188
+00A0: 0x00000025 0x03DB21A8 0x498E6A0E 0x0019F0AC
+00B0: 0xAD0E642E 0x0019F2AC 0x0049B938 0x004B64E8
+00C0: 0xFFFFFFFF 0x0049748B 0x004974A8 0x00000025
+00D0: 0x0049916C 0x00000025 0x00000001 0x00452963
+00E0: 0x004529C6 0x0019F188 0x0236D4D8 0x0019F274
+00F0: 0x00000000 0x00453E37 0x0019F199 0x00000123
+0100: 0x00000001 0x00000008 0x00000003 0x7A118E4E
+0110: 0x8E4EF768 0x00000000 0x00000000 0x00000100
+0120: 0x0236D4D8 0x7A118E4E 0x0045A915 0x0019F188
+0130: 0x00000001 0x00000008 0x00000003 0x7A118E4E
--------------------------
Loaded Modules:
samp-server.exe A: 0x00400000 - 0x004FA000 (C:\Users\Äàíèåë\Desktop\intense\samp-server.exe)
ntdll.dll A: 0x76F20000 - 0x770AD000 (C:\Windows\SYSTEM32\ntdll.dll)
KERNEL32.DLL A: 0x74D60000 - 0x74E30000 (C:\Windows\System32\KERNEL32.DLL)
KERNELBASE.dll A: 0x74FA0000 - 0x75162000 (C:\Windows\System32\KERNELBASE.dll)
SHELL32.dll A: 0x75180000 - 0x764C9000 (C:\Windows\System32\SHELL32.dll)
msvcrt.dll A: 0x745E0000 - 0x7469D000 (C:\Windows\System32\msvcrt.dll)
cfgmgr32.dll A: 0x73E30000 - 0x73E69000 (C:\Windows\System32\cfgmgr32.dll)
ucrtbase.dll A: 0x76960000 - 0x76A78000 (C:\Windows\System32\ucrtbase.dll)
shcore.dll A: 0x76D50000 - 0x76DDC000 (C:\Windows\System32\shcore.dll)
RPCRT4.dll A: 0x74EE0000 - 0x74FA0000 (C:\Windows\System32\RPCRT4.dll)
SspiCli.dll A: 0x739F0000 - 0x73A10000 (C:\Windows\System32\SspiCli.dll)
CRYPTBASE.dll A: 0x739E0000 - 0x739EA000 (C:\Windows\System32\CRYPTBASE.dll)
bcryptPrimitives.dll A: 0x76DE0000 - 0x76E37000 (C:\Windows\System32\bcryptPrimitives.dll)
sechost.dll A: 0x76550000 - 0x76591000 (C:\Windows\System32\sechost.dll)
combase.dll A: 0x76B00000 - 0x76D38000 (C:\Windows\System32\combase.dll)
windows.storage.dll A: 0x74050000 - 0x745D7000 (C:\Windows\System32\windows.storage.dll)
advapi32.dll A: 0x73FD0000 - 0x74047000 (C:\Windows\System32\advapi32.dll)
shlwapi.dll A: 0x76E70000 - 0x76EB5000 (C:\Windows\System32\shlwapi.dll)
GDI32.dll A: 0x76A80000 - 0x76AA1000 (C:\Windows\System32\GDI32.dll)
gdi32full.dll A: 0x76770000 - 0x768C8000 (C:\Windows\System32\gdi32full.dll)
msvcp_win.dll A: 0x764D0000 - 0x76549000 (C:\Windows\System32\msvcp_win.dll)
USER32.dll A: 0x73E90000 - 0x73FCC000 (C:\Windows\System32\USER32.dll)
win32u.dll A: 0x768D0000 - 0x768E6000 (C:\Windows\System32\win32u.dll)
kernel.appcore.dll A: 0x74E30000 - 0x74E3E000 (C:\Windows\System32\kernel.appcore.dll)
powrprof.dll A: 0x74AE0000 - 0x74B25000 (C:\Windows\System32\powrprof.dll)
profapi.dll A: 0x75170000 - 0x75180000 (C:\Windows\System32\profapi.dll)
WSOCK32.dll A: 0x739D0000 - 0x739D8000 (C:\Windows\SYSTEM32\WSOCK32.dll)
WINMM.dll A: 0x6E6D0000 - 0x6E6F4000 (C:\Windows\SYSTEM32\WINMM.dll)
WS2_32.dll A: 0x76600000 - 0x76667000 (C:\Windows\System32\WS2_32.dll)