How to become a Professional Hacker.... Sri Lankan Way

sri_lion

Member
Sep 14, 2006
12,908
102
0
Kuala Lumpur
gayan kalhara said:
:no::no::no::no::no::no::no::no::no::no::no::no::no::no::no::no::no::no:

Sorry about those words. But You'r NOT 98% true.

I'm not Stealing anybody s creations..

Check out this thread after some posts..

*** mama Post eka patan gaththa hati Same (only few words) Unapaliyata eyage Creations mama Horakam KALE na...

mama Post ekkak karannath kalin KOHOMADA KIYANNE MAMA COPY KALA KIYALA>>

That's not the ISSUE.. I'll tell you what the issue is.. you never said this is not from my book either :rolleyes: did you?

And before you become anything.. you must learn something called ETHICS which applies to every industry.. and you are guilty of plagiarism in the beginning of this thread, if you've written a book you are suppose to be more conscious about this than anyone of us :lol::lol:

So next time you copy paste... Dont forget to add the reference!

And please remember... if you can find it in the WEB.... So can we! :rolleyes:
 

ram4mira

Active member
  • Jan 14, 2007
    2,628
    17
    38
    36
    x-pert said:
    Mate,

    Changing words here and there and publishing them again won't make you a professional. and it won't make you the proper author of the book!

    You should be ashamed of yourself to do this buddy.




    Sorry about this.. But I really hate to see when people try to get credit and to earn money by other people's creations.


    http://members.tripod.com/harshak/Tutorials/Hacks/ULTIMA~1.TXT

    http://aconsiderablelife.blogspot.com/


    Panapu gaman kapi yaka kiwwalu.....
    (Yaka kiwwe X pert ta neme :rofl: :rofl: :rofl: :rofl: )
     

    ram4mira

    Active member
  • Jan 14, 2007
    2,628
    17
    38
    36
    Ohhh and some Message to thread starter.....Every 1 makes mistakes...Try to Learn from then and WILL U CONTINUE THE DAMN THREAD!!!!!!!

    (include the source also)
    he he....Hav a nice day!
     

    x-pert

    Member
    Jun 13, 2006
    20,952
    77
    0
    alagakkonara said:
    Why do you need to know these languages to become a hacker?

    I was talking about a real hacker ;)

    Not a script kiddie :)

    Script kiddies use the freely available softwares over the internet and 'try' to hack ;) But they are always.... always traceable

    But if you know programming better, then you will always create your own programs to hack. especially SQL is a great tool (atleast for me :cool:)
     

    x-pert

    Member
    Jun 13, 2006
    20,952
    77
    0
    gayan kalhara said:

    YOU GUYS telling me I'm stealing others Creations. and try to earn money.....

    BUT

    I haven't YET started to posting. My (YA MY) BOOK.

    HOW COULD ANYONE PREDICT ABOUT an UPCOMING POST.

    It's Amazing!!!! I thought Only Holy ppl can do it...

    Yes.. NOW i realize THE ELAKIRI IS THE BEST... (We Got Holy ppl TOOO)
    (Just a Kidding)


    GUYS Please Don't JUMP on ME...

    I think You will be Kind enough to Read the Next few vols..
    and
    Tell me

    Whether I'm another SAKVITHI :D Or Real EK.

    Please TELL ME.



    Check out the Akons Song:: The Topic is " SORRY FOR THE WRONG THINGS I HAVE DONE "







    Ok carry-on mate :cool:

    I didn't mean to dishearten you. But my google search indexing system pointed out to those sites which I have mentioned. Everybody's does :D

    Apology accepted with a ;)

    Good to see youngsters trying to achieve something. But just wanted to show the correct path before you go on the wrong path for a long time where there's no turning back. (I don't like doing it to people personally, but that's my way :baffled:)

    ElaKiri, now publish your articles, but please remember google is a powerful tool. So if you're using other's work certified under creative commons, then mention the originator too - just give a small portion of credit to him/ her as well.

    Cheers bro :D Good luck with your work
     

    alagakkonara

    Member
    Sep 25, 2008
    200
    0
    0
    x-pert said:
    I was talking about a real hacker ;)

    Not a script kiddie :)

    Script kiddies use the freely available softwares over the internet and 'try' to hack ;) But they are always.... always traceable

    But if you know programming better, then you will always create your own programs to hack. especially SQL is a great tool (atleast for me :cool:)

    Ok. I knw some SQL, I need to look in to this. thanks.
     

    x-pert

    Member
    Jun 13, 2006
    20,952
    77
    0
    alagakkonara said:
    Ok. I knw some SQL, I need to look in to this. thanks.

    Ela machang :D

    And most probably, when you learn some programming languages, you will get rid of the idea of becoming a hacker and will try to become an awesome programmer ;)



    nj542 said:
    how u use SQL to hacking???????:confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused:

    i thought SQL is for DB programing........:confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused: :confused:

    Ya machang. so to enter the databases, you need to know SQL :P

    DBs are the place, where you get all the valuable info. like credit card details, usernames, passwords etc.


    sri_lion said:
    I think he is talking about SQL Injection :P ;)

    hehe :P
     

    sri_lion

    Member
    Sep 14, 2006
    12,908
    102
    0
    Kuala Lumpur
    rukshankb said:
    Database thibbath oneway encryption methods thiyena nisa Admin tawath userslage password hoyaganna ba neda.

    nj542 said:
    how u use SQL to hacking???????:confused:

    i thought SQL is for DB programing........:confused:

    Your code must be clean to prevent the vulnerability of your forms! And must process every connection handler through a proper procedure!

    For example in PHP you have some functions you can use for this.. like

    Code:
    mysql_escape_string 
    mysql_real_escape_string()
    stripslashes
    addslashes

    So after implementing these you can define what character sets to use in that particular even or function so whatever SQL commends goes out of scope would not entertained!

    Here's an example!

    Code:
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
    {
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
    
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
    
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;    
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      }
      return $theValue;
    }
    }
    ... rest of the code
     

    alagakkonara

    Member
    Sep 25, 2008
    200
    0
    0
    sri_lion said:
    Your code must be clean to prevent the vulnerability of your forms! And must process every connection handler through a proper procedure!

    For example in PHP you have some functions you can use for this.. like

    Code:
    mysql_escape_string 
    mysql_real_escape_string()
    stripslashes
    addslashes

    So after implementing these you can define what character sets to use in that particular even or function so whatever SQL commends goes out of scope would not entertained!

    Here's an example!

    .....

    Correct me if I'm wrong. You are giving here countermeasures for SQL hacking????
     

    alagakkonara

    Member
    Sep 25, 2008
    200
    0
    0
    x-pert said:
    Ela machang :D

    And most probably, when you learn some programming languages, you will get rid of the idea of becoming a hacker and will try to become an awesome programmer ;)

    Nah.. I want to be a hacker... Anyway I know some languages to a certain extent where you can say, you are no longer a beginner.