This forum is in archive mode. You will not be able to post new content.

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

Pages: [1] 2 3 ... 19
1
Projects and Discussion / Re: Python Bruteforce gmail
« on: February 05, 2016, 08:17:57 PM »
No shortage of IP addresses ;)

I doubt that they do not count failed login attempts across servers.. Otherwise bruteforcing would be too easy/possible.

2
Projects and Discussion / Re: Python Bruteforce gmail
« on: February 03, 2016, 06:50:14 PM »
Well, the biggest problem would be that the servers will block you after too many failed authentication attempts...

3
Scripting Languages / Re: Python Projects
« on: January 27, 2016, 03:54:50 PM »
How about project euler?

Quote
What is Project Euler?
Project Euler is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems.

The motivation for starting Project Euler, and its continuation, is to provide a platform for the inquiring mind to delve into unfamiliar areas and learn new concepts in a fun and recreational context.


Who are the problems aimed at?
The intended audience include students for whom the basic curriculum is not feeding their hunger to learn, adults whose background was not primarily mathematics but had an interest in things mathematical, and professionals who want to keep their problem solving and mathematics on the cutting edge.


Can anyone solve the problems?
The problems range in difficulty and for many the experience is inductive chain learning. That is, by solving one problem it will expose you to a new concept that allows you to undertake a previously inaccessible problem. So the determined participant will slowly but surely work his/her way through every problem.

https://projecteuler.net/

4
Did you even fucking read past the headline??

Quote
Among the targeted sites are the forums of torrent clients Deluge and qBitTorrent, of which the user databases appeared online several days ago.

5
General discussion / Re: Best os for someone new to Linux?
« on: October 11, 2015, 04:02:45 PM »
Surprised nobody mentioned vezzy's guide to linux distributions: https://evilzone.org/operating-system/an-informal-guide-to-linux-distributions-for-the-unwashed-hacker/
It's a nice writeup of the most popular linux distros

6
Hacking and Security / Re: Remove Laptop BIOS password.
« on: October 10, 2015, 10:29:13 PM »
I heard if you put it in your microwave for 5 minutes it'll reset BIOS

Second that one, they even showed that in a TEDx talk, although I can't find the youtube link anymore..

7
Hacking and Security / Re: Triggering URL frequently with Tor.
« on: October 10, 2015, 01:01:14 PM »
First, use the [ c o d e ] and [ / c o d e ] BBcode tags to make your code more readable.

Secondly, you didn't proxy the requests through tor. You just started the service, but didn't connect to it.
Also, don't use os.system if you don't have to. There are better ways to do this:

As you're already using python, I'd suggest the stem library (https://stem.torproject.org/)
It's a python controller library for tor, so it allows, for example, changing the identity. That way you don't have to restart the tor service everytime to get a new identity. Furthermore it makes your code more portable (should work on windows too).
FYI, the requests library doesn't support SOCKS proxies (wich tor is using), so you'll have to look for another http library that does support SOCKS proxies. httplib2 supports these kind of proxies if you have the pysocks/socksipy library installed (pysocks is the more recent fork, socksipy isn't actively developed anymore).

As for the code in general, using a for-loop would make it look cleaner (matter of taste). Assinging the content of the yourtube url to the variable "res" is unneccessary, as you do not use the variable later on.

8
Networking / Re: Network Diagram.
« on: October 07, 2015, 05:31:28 PM »
I doubt there's something that does this.

If you want to simulate a network with a user-interface like in the link you posted, then I'd suggest filius.
Official download link (ubuntu): http://www.lernsoftware-filius.de/downloads/filius_1.6.1_all.deb
For other distros check the repo

9
Beginner's Corner / Re: Building a local SSL Server
« on: October 07, 2015, 05:25:35 PM »
You should read up on SSL first, because you obviosly don't know much...

11
Networking / Re: Reliable UDP
« on: September 23, 2015, 01:30:06 PM »
hello folks, someone are using some version of the reliable UDP? Since currently there is no standard, as it was thought to make it happen and with what restrictions apply?  :)

There's a fairly old experimental standard:
https://tools.ietf.org/html/rfc908
https://tools.ietf.org/html/rfc1151

As well as a slightly more recent draft:
https://tools.ietf.org/html/draft-ietf-sigtran-reliable-udp-00

And there's Lossless UDP from the TOX project:
https://github.com/irungentoo/toxcore/wiki/Lossless-UDP
https://wiki.tox.im/index.php/Lossless_UDP

12
Beginner's Corner / Re: dns hijacking facebook
« on: September 16, 2015, 08:19:50 PM »
The reason for this is because your certificate is not validated. It's always going to appear

OP could always install his own root certificate on the target computer, but that would require admin access.
If that's a feasible way depends on what he wants to archieve. If he wants any live information or plans to spoof multiple websites to steal info this would be a way to do it. If, on the other hand,  OP just wants facebook credentials it would be easier to get them from the browsers saved passwords.

13
Also, I forgot to mention that if you enclose your code with the [ c o d e ] and [ / c o d e ]  tags it gets formatted to be easier to read. You can also specify a language for syntax-highlighting like this (e.g. python): [ c o d e = p y t h o n ]

14
Code: (python) [Select]
def f(x):
    d = []
    if x == d:
        return None
    else:
        sum = 0
        for n in d:
            sum = sum + n
        length = len(d)
    total = sum/length
    print(total)

Because "d" is an empty array, so length is zero. And you're dividing by "d"s length in line 10.

Also, this code can be improved quite a bit:
Line 2 is unneccessary
Line 3 could be changed to "if x:", as an array x evaluates to false if it is empty and to true if it isn't. Then you could put the rest of the code inside that "if".
Line 8 can be shortened to "sum += n".
Line 11 should be "return total", if you want to use the average for some other stuff.
Also, improve variable naming, to be more clear what a variable represents.
Also, "sum" is a built-in function, so don't use it as a variable name!

This would be the improved version:

Code: (python) [Select]
def calcAverage(_array):
    if _array:
        _sum = 0
        for i in _array:
            _sum += i
        average = _sum/len(_array)
        return average
    else:
        return None

15
Hacking and Security / Re: Ways to block users from website
« on: August 29, 2015, 01:45:36 PM »
You'd have to block all the throw-away-email services like Guerrilla Mail, and there are tons of them out there...

I'd also suggest to go at least for a CAPTCHA system, as it makes flooding spam way harder.

Pages: [1] 2 3 ... 19


Want to be here? Contact Ande, Factionwars or Kulverstukas on the forum or at IRC.