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

Pages: [1] 2 3 ... 13
1
Web Oriented Coding / Re: Is this good way to do it
« on: December 14, 2014, 02:33:50 pm »
Code: (php) [Select]
<table>
<?php
if (($fp fopen('test.txt''r'))) {
    while ((
$data fgetcsv($fp))) {
        echo 
'<tr>';
        foreach (
$data as $value)
            echo 
"<td>$value</td>";
        echo 
'</tr>';
    }
    
fclose($fp);
}
?>

</table>

2
Creative Arts / Re: Edgar Allan Poe
« on: November 23, 2014, 07:15:30 pm »
Very good!

3
Scripting Languages / Re: python question
« on: November 22, 2014, 01:59:28 pm »
That's a HUUUGGEEEE open ended question. What software is sending texts or messages? What architecture (mobile/pc)?

4
C - C++ / Re: Output operator overloading and templates
« on: November 04, 2014, 02:20:24 pm »
HINT: use [ code=c++ ] when pasting code. (Without spaces of course).

5
Scripting Languages / Re: Download all ebboks from it-ebooks.info
« on: October 24, 2014, 04:47:31 pm »
You should automatically move them to directories based on the topic.

6
Hacking and Security / Re: C code errors
« on: October 17, 2014, 05:45:33 pm »
Not vulnerable since there is no user input.

7
I admit, that's pretty good :)
I was thinking about Ishikawa and after one wrong guess it solved it.
It must have a huge database of characters and their traits organised in a tree like structure, so when you answer a question the scope of the search tree goes down.

8
C - C++ / Re: Best c++ Book?
« on: October 10, 2014, 03:17:31 pm »
Actually I second that. It does not matter a whole lot if you start out in C or in C++

This might have been correct 10 years ago, but now C++ has completely different style to C. You can code in C if you use C++, but you cannot code in C++ if you use C. C++ is just different paradigm of thinking with classes (and everything that goes with that), objects, STL (if you don't use STL you are not programming in C++), etc

As one person on the Internet said:
"Put simply, what is considered idiomatic in C is definitely not idiomatic in C++.
C and C++ are very different languages in practice, because of the way people use them. C aims at minimalism, where C++ is a very complex language, with a lot of features."

9
Java / Re: Learning Java
« on: September 29, 2014, 10:05:48 am »
Code: [Select]
1. Go to amazon
2. Search books for Java
3. Select the highest rated books
4. Choose from your selection based on reviews
5. Buy/Download the book

10
C - C++ / Re: [C] FileSearch
« on: August 14, 2014, 11:53:51 am »
Can be faster if instead of recursion you use iteration. Can also crash if there's too many nested directories - runs out of stack space.

11
Tutorials / Re: Learning Brainfuck for Pleasure and Profit
« on: May 31, 2014, 10:08:14 pm »
Awesome, I thought brainfuck would be more complex :P
Thanks, cookie++;

12
I've always believed that anything that you love, if you then end up doing as a career you run the risk of hating it. That's how it is for me at least. I have hopes of hopefully becoming a security analyst, and for some reason I thought it would be different. Specially the higher level sexy senior security consultant/pentesting jobs because, "How could breaking into a corporate network for money be boring?"

Not that this will definitely happen, but I'd be interested to know how many people here and on IRC don't really "hack" as a hobby anymore because they are forced to deal with networks and security all day every day. I don't think that this article is strictly referring to the world of infosec, even though that's what it was directed at. For example, say you get a job as a developer, I could easily see that making you hate programming once you realize that bureaucratic fucktards are constantly pushing deadlines on you, and you are only ever coding things that don't actually interest you.

I've been hearing a lot recently that "hacking irl is dead." This makes me sad but I wonder how true it is. I mean sure, you can't just drop a shell on any website in a few minutes using error-based sqli anymore, but hacking is still alive and well. I believe that anyway. If anything it's more alive then ever because it's harder. We are constantly pushing the boundaries and that certainly doesn't evaluate to "hacking is dead." /tangent

Anyway, I 'm starting to think maybe I shouldn't be pursuing a career as a "hacker", the trouble is that no careers have ever really interested me. I landed on this one because security is my greatest hobby and it makes sense to get paid for it.

I suggest you do network administration/engineering for a job. Doesn't involve hacking but still deals with same topics such as network security. Keep hacking a hobby as it was initially for every starting hacker.

13
Hmm, did anyone else think it might be NSA implanted bug?

14
Scripting Languages / Re: [Source] StreamGrab.py
« on: January 24, 2014, 01:19:34 pm »
Is using list for accessing the packets thread safe? Your thread and the main process access self._packets without locks (as far as I know) so there maybe a problem.
I suggest using queue instead which has inbuilt blocking mechanism.

15
Scripting Languages / Re: Question: Help my understanding of my code
« on: January 11, 2014, 04:26:45 pm »
It's not "writeFile.close", it is "writeFile.close()" since it is a function.

Pages: [1] 2 3 ... 13