CAG PM Checker

nosnipe

CAGiversary!
Feedback
1 (67%)
So i often find myself with not that much time to check for PMs, i ask myself why dont i write a program that can quickly check to see if i have any PMs or not? so i did and this is the result and might i say it works very well, and i decided to release it the rest of cag because they might find it useful.



Howto:

1) your username and password into each text file
2) start Program
3) When done make sure you logout
4) give thanks to nosnipe :)

Code:
Antivirus;Version;Last Update;Result
a-squared;4.5.0.24;2009.08.30;-
AhnLab-V3;5.0.0.2;2009.08.29;-
AntiVir;7.9.1.7;2009.08.30;-
Antiy-AVL;2.0.3.7;2009.08.24;-
Authentium;5.1.2.4;2009.08.30;-
Avast;4.8.1335.0;2009.08.30;-
AVG;8.5.0.406;2009.08.30;-
BitDefender;7.2;2009.08.30;-
CAT-QuickHeal;10.00;2009.08.29;-
ClamAV;0.94.1;2009.08.30;PUA.Script.Packed-3
Comodo;2124;2009.08.30;-
DrWeb;5.0.0.12182;2009.08.30;-
eSafe;7.0.17.0;2009.08.30;Suspicious File
eTrust-Vet;31.6.6707;2009.08.28;-
F-Prot;4.5.1.85;2009.08.29;-
F-Secure;8.0.14470.0;2009.08.29;-
Fortinet;3.120.0.0;2009.08.30;-
GData;19;2009.08.30;-
Ikarus;T3.1.1.68.0;2009.08.30;-
Jiangmin;11.0.800;2009.08.30;-
K7AntiVirus;7.10.831;2009.08.29;-
Kaspersky;7.0.0.125;2009.08.30;-
McAfee;5725;2009.08.30;W32/Autorun.worm.zf.gen
McAfee+Artemis;5725;2009.08.30;W32/Autorun.worm.zf.gen
McAfee-GW-Edition;6.8.5;2009.08.30;-
Microsoft;1.5005;2009.08.30;-
NOD32;4382;2009.08.30;-
Norman;;2009.08.29;-
nProtect;2009.1.8.0;2009.08.30;-
Panda;10.0.2.2;2009.08.30;-
PCTools;4.4.2.0;2009.08.30;-
Prevx;3.0;2009.08.30;-
Rising;21.44.61.00;2009.08.30;-
Sophos;4.45.0;2009.08.30;-
Sunbelt;3.2.1858.2;2009.08.29;-
Symantec;1.4.4.12;2009.08.30;-
TheHacker;6.3.4.3.391;2009.08.29;-
TrendMicro;8.950.0.1094;2009.08.30;-
VBA32;3.12.10.10;2009.08.30;-
ViRobot;2009.8.28.1907;2009.08.28;-
VirusBuster;4.6.5.0;2009.08.30;-

Additional information
File size: 380649 bytes
MD5...: 8c75949a961afebd3150cac401d86000
SHA1..: d8b1b4925129e6a429c606a9e7b5cce574905b4a
SHA256: f1b57ebd2d7f8f541c71155a1cbdd9cc14b3889d3fdaa53939ce470a55e17c48
ssdeep: 6144:K3j2Tuw86UEAOocDCzSUSPIaMCl3mH18+3DUoZ6imUVYAecYMWHF5ggpK3Z
6:qjj6UQ+JSPIpClUS+3goZywecQTp06

PEiD..: -
PEInfo: -
RDS...: NSRL Reference Data Set
-
pdfid.: -
trid..: ZIP compressed archive (99.8%)
Autodesk FLIC Image File (extensions: flc, fli, cel) (0.1%)
packers (F-Prot): UPX
packers (Kaspersky): PE_Patch.UPX, UPX
all false positives from autoit and upx see:
Code:
http://www.autoitscript.com/forum/index.php?showtopic=34658
Download:
Code:
http://www.novaup.com/download/tb4gw5x2towfx
video:
Code:
http://www.screentoaster.com/watch/stVE5USkNIR1xeRl9dX1xdV1RR/cooooool
 
Not to shit on you or anything, but how is that any easier than just coming to the site and seeing the blinking 'Unread PMs' message at the top of the page?
 
That or you can just set it so you get an e-mail when you get a PM, then when you are checking your e-mail anyway, you can quickly find out if you have a PM from CAG.

Good job though!
 
[quote name='st0neface']Not to shit on you or anything, but how is that any easier than just coming to the site and seeing the blinking 'Unread PMs' message at the top of the page?[/QUOTE]

you might be right , but i like doing it this way :)

maybe i was posting it because i felt accomplished and i find it useful , redundant as it may be.

[quote name='mission42']That or you can just set it so you get an e-mail when you get a PM, then when you are checking your e-mail anyway, you can quickly find out if you have a PM from CAG.

Good job though![/QUOTE]

thanks :)
 
[quote name='xgrimx']In b4 key logger.[/QUOTE]

in b4 your wrong

Source Code:
Code:
#include 
#include 
#include 
#include 
#include 
#include 

Opt("MouseCoordMode", 2)

HotKeySet("{esc}", "die")

$U = FileOpen("Username.txt", 0)
$Username = FileReadLine($U)
$P = FileOpen("Password.txt", 0)
$Password = FileReadLine($P)

ProgressOn("Searching For PMs", "Loading CAG PM Checker, Please Wait", "0 percent")

ProgressSet("0", "0", "")
Sleep(1000)
ProgressSet("20", "20", "")

$oIE = _IECreateEmbedded()
GUICreate("Cheap Ass Gamer : PMC", 880, 624, 216, 142)
GUICtrlCreateObj($oIE, -1, -1, 880, 624)
_IENavigate($oIE, "about[B]:blank")
ProgressSet("40", "40", "")
Sleep(500)
_IENavigate($oIE, "www.cheapassgamer.com")
ProgressSet("60", "60", "")
Sleep(500)
ProgressSet("80", "80", "")




_IELoadWait($oIE)
ProgressSet("90", "90", "")
login()
Sleep(3000)
ProgressSet("100", "100", "")
Sleep(1000)
ProgressOff()




$b = _IEBodyReadText($oIE)



If StringInStr($b, "Unread PMs:") Then
    MsgBox(0, "CAG PM Checker", "You Have New PMs")
    _IENavigate($oIE, "http://www.cheapassgamer.com/forums/private.php")
    GUISetState(@SW_SHOW)
Else
    MsgBox(0, "CAG PM Checker", "You Have No New PMs, Sorry!")
    Exit
EndIf



While 1
WEnd


Func login()

    ControlClick("Cheap Ass Gamer : PMC", "", "Internet Explorer_Server1", "left", 1, 601, 190)
    ControlSend("Cheap Ass Gamer : PMC", "", "Internet Explorer_Server1", $Username & "")
    Sleep(10)
    ControlClick("Cheap Ass Gamer : PMC", "", "Internet Explorer_Server1", "left", 1, 681, 190)
    ControlSend("Cheap Ass Gamer : PMC", "", "Internet Explorer_Server1", $Password & "")
    Sleep(10)
    ControlClick("Cheap Ass Gamer : PMC", "", "Internet Explorer_Server1", "left", 1, 809, 188)
    Sleep(1000)
    ControlClick("Cheap Ass Gamer : PMC", "", "Internet Explorer_Server1", "left", 1, 765, 188)

EndFunc   ;==>login

Func die()
    Exit 0
EndFunc   ;==>die[/B]
 
bread's done
Back
Top