1
High Quality Tutorials / Re: Local File Inclusion (LFI)
« on: October 12, 2015, 01:24:04 pm »'local attack' is an ambiguous buzzword with no meaning.Local attack mean up shell and replace file
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.
'local attack' is an ambiguous buzzword with no meaning.Local attack mean up shell and replace file
Your best bet is probably to look and/or Reverse through other open source cryptors. Found this one on github:Thank for some crypter in C++, i need some sample to develope my own
https://github.com/jozemberi/PE-Crypter
Then I also found this on some random hack forum that's not hackforums lol, be careful I didn't check any of the files
http://mediafire.com/?16i6juki9u955pc
There is no such thing as a 'vulnerable' column.I also hack with sql injection and somtime it show no column with union all select. I wonder it has not any text type column (a table always has text column, is that right?).Thank for answer
It outputs 1, 2 and/or 3 because that is the values you selected (SELECT 1,2,3). When you select a number instead of the column name, it takes the values as is, and prints them directly. You could also do SELECT 'a', 'b', 'c' and it would print 'a', 'b' and/or 'c'. You do this to see the changes in output, so that you know where to look and what is being printed in the next step: Actually retrieving data.