• TheCleaner , cleans your GMAIL email account
    12 replies, posted
[url]http://dl.dropbox.com/u/408914/TheCleaner.rar[/url] Just put in your email in gmail.txt in this format L: [email]lol@gmail.com[/email] P: lol12321312 I wrote this program to get used to SSL and IMAP, it handles multiple emails at once. Please do not ABUSE this Here is the source for you paranoid people [url]http://dl.dropbox.com/u/408914/source.rar[/url]
You uhh.. Going to provide source for that?
[QUOTE=Jookia;33658151]You uhh.. Going to provide source for that?[/QUOTE] sure
Glad you consider people who don't run random executables that take your password in plaintext off the internet paranoid.
If you're going to use this, compile your own version from the source. The binary might contain more than the source he provided.
[QUOTE=dajoh;33658622]If you're going to use this, compile your own version from the source. The binary might contain more than the source he provided.[/QUOTE] While this is a very paranoid comment, I know if I wanted to fuck some people over for a laugh, I'd throw a few extras into the compiled version, so it's a fair call.
It's hardly paranoid, it's a simple matter of not trusting random code written by people of the internet. Would you let a homeless guy who turned up at your house take your tv because he said he was a tv repair guy?
[cpp]extern "C" { __inline__ uint64_t rdtsc() { uint32_t lo, hi; /* We cannot use "=A", since this would use %rax on x86_64 */ __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); return (uint64_t)hi << 32 | lo; } }[/cpp] What the fuck am I looking at.
[QUOTE=Overv;33671488][cpp]extern "C" { __inline__ uint64_t rdtsc() { uint32_t lo, hi; /* We cannot use "=A", since this would use %rax on x86_64 */ __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi)); return (uint64_t)hi << 32 | lo; } }[/cpp] What the fuck am I looking at.[/QUOTE] The time stamp counter reader?
[QUOTE=Jookia;33671552]The time stamp counter reader?[/QUOTE] I know, what's wrong with clock()?
[QUOTE=Overv;33671568]I know, what's wrong with clock()?[/QUOTE] Too portable.
oh that, forgot to delete that, I wanted to see what took the longest in my program to execute, using ctime only gave me the time in seconds , and if I wanted to use the windows clock I would of had to include a lot of garbage and libs
[QUOTE=marcin1337;33671704]oh that, forgot to delete that, I wanted to see what took the longest in my program to execute, using ctime only gave me the time in seconds , and if I wanted to use the windows clock I would of had to include a lot of garbage and libs[/QUOTE] are you sure that's all you "forgot" to delete?
Sorry, you need to Log In to post a reply to this thread.