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 - Shad0w

Pages: [1]
1
I've used TOR before.
 I think your looked at like a "Alien"  because ToR is used by people trying to hide there browsing activity
(Which usually means , 'They are involved in some bad shit' ..Peado's, Hitmen, Drugs...etc.
I only ever came across 'nasty sites'.
If you know some good (Nice) sites post the address's here..

2
Beginner's Corner / Re: How do I PIPE Python script to aircrack
« on: December 13, 2014, 04:31:29 pm »
No problem, also I recommend reading some of my comments closely, they will help you in the future while you learn. Esp stuff like checking for duplicates. You just waste cycles trying a value that already hasn't worked no? And theres nothing in random.choice() to avoid duplicate string building, its random after all. Things like that are small but important to consider in the future.

Also it may well be worth it to simply sequentially save all possible output to a file. All uppers with mixed numbers isn't even half the charset of all lower and uppercase, so its entirely feasible. It would also be a small challenge in its own way to correctly produce all possible combinations without repeating in an efficient manner. Just a suggestion.

I was aware of it producing duplicates. Now I have the output piping correctly with aircrack,  I will try and make a better
code.
Like the one you suggested that outputs all the possible combinations.
Not sure how I check all combinations are created..
as people say " Google is your friend"

3
Beginner's Corner / Re: How do I PIPE Python script to aircrack
« on: December 13, 2014, 03:47:29 pm »
Thanks madf0x.

I've got it working now. After reading your last post..
I removed

print '\n'
sys.stdout.write(keep)

And just used

print keep


4
Hacking and Security / Re: Router Hack
« on: December 13, 2014, 03:15:27 pm »
What about dsniff.?

You could arpspoof the entire network and use sslstrip ...
It could make Internet access slow..

I don't know if this will work, Just a suggestion..!!

5
Beginner's Corner / Re: How do I PIPE Python script to aircrack
« on: December 13, 2014, 02:33:33 pm »
madf0x, Your code throwed up a error.


File "/root/test.py", line 22, in <module>
    keep = string
IndexError: list assignment index out of range


I stripped my code down as it was very slow.
Here is what I have now..

Code: [Select]
#!/usr/bin/env python
 import os,string,random,sys
 length = 8
chars = string.ascii_letters.upper()+string.digits random.seed = (os.urandom(1024))
 keep=[]
while len(keep)<1000:
    keep = (''.join(random.choice(chars) for i in range(length)))
    print '\n'
    print sys.stdout.write(keep)
sys.stdout.flush()





Quote



Don't random generate like that , it's silly and counterproductive.


As in "Going round in circles"?

I'm random Generating Because it is a talktalk router Default Password.
It was just something to do , to learn programming .

Thanks for the input :)

Quote
Proxx gave you the correct answer, not sure why you couldn't have figured that one out?


I knew what command to use to pipe..lol
It was the correct codeing I was missing..

I'm very new to programming and Python is my first language..


6
Beginner's Corner / How do I PIPE Python script to aircrack
« on: December 12, 2014, 10:28:30 pm »
I've written a small script tha generates 8 chars, I want it to pipe through to aircrack (Like Crunch does).

Here is the code....

     
Code: [Select]
#!/usr/bin/env python
import os,string,random,sys
length = 8
chars = string.ascii_letters.upper()+string.digits
random.seed = (os.urandom(1024))

keep=[]
keep1=[]
while len(keep)<100000:
     keep.append(''.join(random.choice(chars) for i in range(length)))

#print '\n',keep[::-1]

for x in keep:
    keep1.append(x[::-1])

while len(keep1) < 1000:
       
   
    sys.stdout()   [\code]


I can save them to a file and run them..But I want it to run with aircrack as it generates the 'default router passwords'

Here is the code that saves it to file...
Code: [Select]
#!/usr/bin/env python

import os,   random,   string

length = 8
chars = string.ascii_letters.upper()+string.digits
random.seed = (os.urandom(1024))


file_out = open('newRa.txt','w') # Create a 'FILE' to save Generated Passwords
list1=[]
while len(list1) < 100000:
    list1.append(''.join(random.choice(chars) for i in range(length)))

for item in list1:
  file_out.write('%s\n' % item)
file_out.close()
 
   
file_out1=open('test.txt','w')

for x in list1:
    file_out1.write('%s\n' %x[::-1])  [\code]


I want it to work like     "./My_Python_Code stdout | aircrack-ng ....."

It does run with aircrack but it does not look correct.
Any ideas??

Pages: [1]