|
As a hacker/developers, which chatroom do you goto to interact with other hacker/developers? eg rooms on irc.freenode.net etc
Started by Abhishek Mishra on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I usually....
Just as needed.
If I am configuring my server I hang out in #linux, if I am working on interfacing transmission with python I may hang out in #python and #transmission ;) .
Well basicly in chatrooms regarding the current work and their tools .
|
|
I'm currently reading Steven Levy's "Hackers", where he defines the "Hacker Ethic" of the 60's in the following points:
All information should be free.
Mistrust Authority – Promote Decentralization.
Always yield to the "Hands-On" Imperative.
Hackers should...
Started by Goose Bumper on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I've seen many lately that are obsessed with point 4, caring little ... .
I can speak for myself and say that I agree with all those points, so that ethic certainly does still exist today, not sure how common it is amongst my peers though .
Open-source....
|
|
How should I protect my website from hackers adding malicious code to my html files and js files
Started by Pandiya Chendur on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
There is no one solution, security comes in layers - like an onion ;p
Follow best-practices for configuring the software suites and platforms you're using, keep everything updated... .
Use some function to block sql injection.
Do all the processing server-side.
|
Ask your Facebook Friends
|
Quote: LONDON8364;”The FBI says that hackers have intercepted a sensitive conference call between the FBI and Scotland Yard cybercrime investigators.
The loose-knit hacking collective known as Anonymous released a roughly 15-minute-long recording of what...
Started by Ändy on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at di-rs):
No good hacker lets you know who he is reem Anonymous - making shit.
Call tbh
dumbass fake hackers.
|
|
We noticed that a hacker created a domain and configured DNS to point it to our server's IP address.
We are using apache2.x on Ubuntu. There is a "default" file in apache's /etc/apache2/sites-available directory and it looks like the the hacker's domain...
Started by Think Floyd on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Your best bet is to make the 000-default host return a 400 or 500 error (or some explicit message saying the domain... .
Unknown domains that come into apache over the specified ip and port will be directed to the first virtual host, thus the 000-default file .
|
|
I save some important info in $_SESSION , not in $_COOKIE . So, my question, is it dangerous? Or hacker is not able to edit $_SESSION and I'm fine? Thank you.
edited: By the way, is it possible also to edit $_COOKIE ? I heard yes, but if yes, then how...
Started by Donator on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
$_COOKIE is, however, stored client-side, so a hacker....
The best a hacker could do would be substitute another user's session for the existing session, but the hacker could not insert arbitrary data into $_SESSION .
Is stored server-side.
|
|
Hacker de r2beat hacker de r2beat Share Share this post on Digg Del.icio.us Technorati Twitter Spurl this Post! Reddit! Wong this Post!
Started by Guest 1030 on
, 12 posts
by 2 people.
Answer Snippets (Read the full thread at rarityguide):
Re: hacker de r2beat hay hacker de R2Beat¿? Re: hacker de r2beat necesito hack Re: hacker de r2beat NECESITOo hacker ps Ookk Re: hacker de r2beat hola como le solo quiero hak de Re2beat Re: hacker de....
|
|
Hacker de r2beat hacker de r2beat
Started by Guest 1030 on
, 12 posts
by 2 people.
Answer Snippets (Read the full thread at rarityguide):
Re: hacker de r2beat hay hacker de R2Beat¿? Share Share this post on Digg Del.icio.us Technorati Twitter Spurl this Post! Reddit! Wong this Post! Re: hacker de r2beat necesito hack Share Share this post on Digg Del.icio.us Technorati....
|
'Anonymous' hackers intercept conversation between FBI and Scotland Yard on how to deal with hackers
Started by eastaspook on
, 16 posts
by 11 people.
Answer Snippets (Read the full thread at reddit):
I'm guessing you're one of those kids who thinks they're a "hacker," and gets.
A pretty big assumption.
|
|
Hi all, I am really new to online web application. I am using php, I got this code:
if(isset($_GET['return']) && !empty($_GET['return'])){ return = $_GET['return']; header("Location: ./index.php?" . $return); } else { header("Location: ./index.php");
...
Started by bbtang on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You could....
For example:
return=blowup.php
or
return=http://www.google.co.uk
or
return=http%3A%2F%2Fwww.google.co.uk%2F
You could obfuscate the reference by not including the .php in the variable .
What would happen if you put in a page that didn't exist .
|