I personally prefer python
Anywho, Though I've known this for quite a while, you posting it gave me an idea. Bruteforce each IP between those points with one of my clients, maybe we can find some dev servers or some other interesting information? Do it just for the fun, no real reason. If I get a few I'll write it up and release it open source.
EDIT::
Flare, go python, it's super easy to do most things. You name it, someone else has written a library for it. Syntax is really fucking easy, Out of all the languages I've written, python by far has been the easiest for the amount of power you get. Only poor thing about it is utilizing the GUI libs, fucking impossible.![]()
Results 1 to 26 of 26
Thread: Small tidbit of info about Gaia
Hybrid View
- 09 Sep. 2012 03:07pm #1
- 09 Sep. 2012 06:33pm #2
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 1237.00
What do you mean about the bruteforcing? Could you explain that a bit more?
If you know what nmap is, or how to read the results of a port scan, I can send you my files. And yeah, I think I'll go with python then. How do you interact with the web using it? I know for C++ there's like libcurl, so do you have to do something like that? I could never get libcurl working with c++, because there's virtually no documentation. Is it easier on Python? And about the GUIs, there isn't anything like Qt (C++) or VisualBasic (.NET) or AutoIt's GUI thing that's made for Python? That must be annoying as all hell, haha.
- 09 Sep. 2012 06:54pm #3
He meant getting all IPs in the range of the two you posted. Which is entirely pointless and not really feasible. I think old Matt is just looking for something to do.
Also you are obviously not looking hard enough if you can't find any documentation for cURL. It's quite simple so of course the documentation span wouldn't be vast.
Just follow tutorials or read some source code then create a wrapper for it to simplify the structure you need when interacting with the web. I think you could put more effort into these things than you're currently putting.
And Python has literally tons of networking/web (WWW) libraries. That tells me you either really aren't trying or you just up and quit easily. There's urllib/urllib2/requests and more. There's even a curl binding for Python. LG has distributed more than a handful of HTTP wrappers in the past (for example, in Artificial's Gaia login it includes a small and minimalist wrapper for urllib/2).
As for Python GUI builders, they exist. Given they're less convenient than say Microsoft's integrated WYSIWYG editor in languages like C# and Visual Basic. I use Boa Constructor for wxPython. Boa Constructor home
There's plenty more where that came from. Also, AutoIt's GUI designer is named Koda and it was made in Delphi.
But Python and similar languages weren't really designed with those things in mind due to the fact that Python is general purpose and not a RAD programming language like VB or Delphi.Last edited by The Unintelligible; 09 Sep. 2012 at 07:07pm.
- 09 Sep. 2012 08:01pm #4
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 15.00
Well I'm afraid I don't really understand it. If you could explain it a bit that would be cool.
And I never said that curl was the only Python thing to interact with the net, it was just the only one I knew of.
But anyway, I think I'm going to start learning Python again. Which one should I learn? 2.7 or like 3.0 or whatever? I think before I had been learning 3.0 or whatever the 3 one is, but I had always heard that 2.7 was better or something like that.
Also, what do you do when you want to program but don't know what to program? Because I really feel like programming right now, but can't think of anything useful to make, and I'm sick of making programs that just say either 1 or 0 if they fail or complete correctly, and they just use whatever things I just learned to either print a 1 or 0. Like, one of my most recent ones was when I was testing if, else, and else if statements to see if I could do this one thing with them. It would return a 1 if it succeeded, or a 0, 0-1, 0-2, etc, to see what section it failed at. You could say it was like a built-in thing to show what spot the program failed at. Compared to newer programs it was probably old as all hell though.
- 09 Sep. 2012 08:55pm #5
What don't you understand exactly? Maybe I can help explain it a bit. And yeah, I'm just telling you that there's numerous Python facilities that allow you to interact with the web.
Learn 2.7 simply because it has more forward compatibility with libraries and such.
And you usually know when you want to program simply when you feel like it - I guess sort of like supposedly now.
- 09 Sep. 2012 09:01pm #6
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 651.00
Oh okay, and oh okay about the 2.7 too. And I mean I have nothing TO program. I can't think of anything useful to program, but I really feel like programming and learning. Do you have any suggestions on fairly simple software to make or anything? I can't think of anything that I truly need to program at the moment
- 09 Sep. 2012 09:11pm #7
Alright, but what was it earlier that you said you needed to be explained?
And just make absolutely anything that comes in mind. Gaia bots, bots in general, basic programs, games, utilities, etc. Or do you want more specific suggestions? If so, what kind of suggestions in general are you looking for?