Search found 84 matches

by Luke111
Tue Aug 28, 2012 2:45 am
Forum: Tutorials
Topic: Intro to Security (PHP)
Replies: -1
Views: 11666

Re: Intro to Security (PHP)

Thanks! I am glad someone reads them!

Off topic:
It's cool to see someone from Honduras, I was once there on a cruise ship!
by Luke111
Tue Aug 28, 2012 12:26 am
Forum: Tutorials
Topic: Intro to Security (PHP)
Replies: -1
Views: 11666

Re: Intro to Security (PHP)

Hi! This is the second part of my tutorial! Today, we will be learning "What is SQL Injection" and "How do we stop SQL Injection". I will go over the very basic methods used by most novice to intermediate programmers to stop SQL Injection, and I will touch on the more advanced to...
by Luke111
Tue Aug 28, 2012 12:25 am
Forum: Tutorials
Topic: Intro to Security (PHP)
Replies: -1
Views: 11666

Intro to Security (PHP)

Hi Everyone! Welcome to my Intro to Security in PHP tutorial. Today, we will be going over some very common, and easy-to-master tactics that novice to intermediate hackers will learn once they become serious about learning how to hack. So, here's the agenda (it is in order from easiest to hardest): ...
by Luke111
Tue Aug 28, 2012 12:24 am
Forum: Off-Topic
Topic: RAGE! Do you get it?
Replies: -1
Views: 408

Re: RAGE! Do you get it?

I nearly broke my 360 controller pressing the big X button down too hard, waiting for it to turn off! (not to mention the words that were coming out of my mouth were very rude towards the other team, and often my team too.) When I was little, I used to go through SNES controllers every other month. ...
by Luke111
Thu Aug 23, 2012 12:39 am
Forum: Code Sharing
Topic: Making Session Jacking a Nightmare
Replies: -1
Views: 1272

Re: Making Session Jacking a Nightmare

Yes, Jack! You are absolutely correct!
This line of code is probably the most important in that whole tutorial I wrote:

Code: Select all

session_regenerate_id(false);
 
That is the one that regenerates the session ID.
by Luke111
Thu Aug 23, 2012 12:33 am
Forum: Off-Topic
Topic: What kind of code..........
Replies: -1
Views: 1491

Re: What kind of code..........

AFAIK mono will run existing C# applications, as long as they don't have DLL dependencies; but those are VERY common. So, +1 for Java on that one. Python is very capable of a lot of things, IMHO. I was in a programming course over the summer that utilized it, and I was very pleased with Pygame. If y...
by Luke111
Thu Aug 23, 2012 12:29 am
Forum: Advanced Help and Support
Topic: Using PHP variables on Javascript Function
Replies: -1
Views: 1545

Re: Using PHP variables on Javascript Function

Hi! You can't directly access PHP variables from Javascript, as once PHP runs, and displays the page, it is done. Maybe something like this: <script type="text/javascript"> var x = "<?php echo $x; ?>"; function doSomething(a,elemID) { //just an example document.getElementByID(ele...
by Luke111
Tue Aug 21, 2012 7:46 pm
Forum: Beginner Help and Support
Topic: NEW: MYSQL security and Indexing advance database
Replies: -1
Views: 1538

Re: NEW: MYSQL security and Indexing advance database

Hi oroton!
sha2 is better than sha1. I just use sha1 because I don't want to mess around with the cryptography library in PHP; sha1 is built in.

If you want to use sha1, you should be safe, though (as long as you salt).

Thanks!
Luke
by Luke111
Tue Aug 21, 2012 2:39 am
Forum: HallsNode
Topic: Suggestions
Replies: -1
Views: 6068

Re: Suggestions

Oh, here's another suggestion. Please don't go Solstar on us!
by Luke111
Tue Aug 21, 2012 2:38 am
Forum: Off-Topic
Topic: What kind of code..........
Replies: -1
Views: 1491

Re: What kind of code..........

I run C# apps on my linux machine, without wine. I use mono. Heard of it? It is pretty cool, actually.

Go to advanced search