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

Pages: [1]
1
Hacking and Security / Changing Account Privileges in Windows
« on: December 12, 2013, 08:11:24 pm »
How do you get admin privileges for a limited user in windows without using another OS to do the hack?

2
Hacking and Security / Re: Copying the SAM File Without Using another OS
« on: December 10, 2013, 09:35:35 pm »
@proxx gotcha!

3
Hacking and Security / Re: Copying the SAM File Without Using another OS
« on: December 10, 2013, 07:41:28 pm »
@proxx If you happen to know any tutorials on volume shadow copy could you please post the links to them and BTW thanks a lot for the reply.

@ande Could you tell me how to escalate my privileges if you happen to know how to and BTW thanks for the reply.

Staff node: edit your damn posts, brah.

4
Hacking and Security / Copying the SAM File Without Using another OS
« on: December 10, 2013, 07:20:16 pm »
Could any one tell me how to access the SAM File in Windows 8 without running another OS and it should be possible for a limited user to do this? A reply would be deeply appreciated.

5
Hacking and Security / Re: Password Generator
« on: February 10, 2013, 07:21:41 am »
@Jboeggs Let's assume we want all possible 7 character strings. That is 64,847,759,419,264 strings. So it takes quite some time to generate these strings. BTW thanks for the reply.


@DaNePaLI You are absolutely correct! If you don't mind I would like to point out a minor mistake in your code, you forgot to assign plist to a new list. So, here is the working code for the password generator which is much faster! Thank you very much again! If anyone is using the previous code please use this!
Code: [Select]

#!/usr/bin/python3
from itertools import product
import random
def pwdgen():
    location = input("""Where do you want to store the words generated? (File Location) (Please specify the directory with / rather than \)""")
    maxlen = int(input('How long should the words generated be?'))
    file = open(location, 'w')
    plist, variable = [], ()
    while len(variable) <= maxlen:
        variable += (str(random.random()), )
    for variable in product(range(33, 127), repeat = maxlen):
        tstring = ''
        for i in range(0, maxlen):
            tstring += chr(variable[i])
        file.write(tstring + '\n')
        plist.append(tstring)
    file = open(location, 'w')
    file.close()
    return 'Done!'

Staff Edit
Do not double post

6
Hacking and Security / Re: Password Generator
« on: February 09, 2013, 07:31:23 pm »
no doubles are generated by this code

7
Hacking and Security / Password Generator
« on: February 09, 2013, 01:36:18 pm »
This python code below can generate all possible strings of a specified length with all the characters present on a U.S. keyboard (94 characters) and store them in a text file. Hope this will be helpful!
Code: [Select]

from itertools import product
import random
def pwdgen():
    location = input("""Where do you want to store the words generated? (File Location) (Please specify the directory with / rather than \)""")
    maxlen = int(input('How long should the words generated be?'))
    plist, variable = [], ()
    while len(variable) <= maxlen:
        variable += (str(random.random()), )
    for variable in product(range(33, 127), repeat = maxlen):
        tstring = ''
        for i in range(0, maxlen):
            tstring += chr(variable[i])
        plist.append(tstring)
    file = open(location, 'w')
    for i in plist:
        file.write(i + '\n')
    file.close()
    return 'Done!'


P.S. : Sorry for the confusing variable names

8
Scripting Languages / Re: Dynamic number of loops
« on: February 09, 2013, 06:23:58 am »
thanks for the reply but I found the solution. We have to use product in itertools to do this.

9
Scripting Languages / Re: Dynamic number of loops
« on: February 08, 2013, 07:38:33 pm »
thanks for the reply man!

10
Scripting Languages / Dynamic number of loops
« on: February 08, 2013, 06:53:05 pm »
I was wondering if there is any code to generate a dynamic number of loops (where the number is specified by the user) in python. Any help would be deeply appreciated.

Pages: [1]