EvilZone

Hacking and Security => Hacking and Security => : forummailpk December 09, 2015, 10:38:07 PM

: Hackers toolkit chrome extension - Encoding decoding
: forummailpk December 09, 2015, 10:38:07 PM
What is Hackers Toolkit?

Quickly encode or decode string with a certain encryption or get the query for a certain web hacking method.

:
https://chrome.google.com/webstore/detail/hackers-toolkit/gnniaejgfdelaafcjopndjdebjfnkljf

Extension features:

[ 1 Encoders one-way ]
   [ 2 Encoders ]
   [ 3 Decoders ]
  [ 4 Bruteforcers ]
   [ 5 Converters ]
   [ 6 String tools ]
   [ 7 SQL injection tools ]
   [ 8 Other hacking tools ]
   
: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
: Dr4g0n December 24, 2015, 10:42:32 PM
Do you have the source code for this?
: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
: forummailpk December 25, 2015, 09:28:45 AM
Do you have the source code for this?
Yes, i'm the author
: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
: khofo December 25, 2015, 08:00:24 PM
Yes, i'm the author
We would love to take a look, mind to link us to Github or post it on here ?
: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
: Fur December 25, 2015, 08:37:53 PM
I used this website (http://chrome-extension-downloader.com/) to download the extension crx and this website/extension (https://github.com/Rob--W/crxviewer) to view the JavaScript source:
: (JavaScript)
    function sendRequest() {
        var request;
        var browser = navigator.appName;
     
        request = new XMLHttpRequest;
     
        request.onreadystatechange = function() {
            if (request.readyState != 4) {
                document.getElementById("result")
                    .style.display = "none";
                document.getElementById("waiting")
                    .style.display = "block";
            } else {
                document.getElementById("waiting")
                    .style.display = "none";
                document.getElementById("result")
                    .style.display = "block";
     
                document.getElementById("result")
                    .innerHTML = request.responseText;
            }
        }
     
        request.open("GET", "http://programming.rs/hackers-toolkit/action.php?" + "type=" + document.getElementById("type")
            .value + "&hash=" + encodeURIComponent(btoa(document.getElementById("hash")
                .value)), true);
        request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
        request.send();
    }
    document.addEventListener("click", function(event) {
        if (event.target.type == "button") {
            var type = document.getElementById("type")
                .value;
            var hash = encodeURIComponent(btoa(document.getElementById("hash")
                .value));
     
            if ((type.length + hash.length) < 6000) {
                sendRequest();
            } else {
                document.getElementById("waiting")
                    .style.display = "none";
                document.getElementById("result")
                    .style.display = "block";
     
                document.getElementById("result")
                    .innerHTML = "Request too long.";
            }
     
        } else if (event.target.id == "result") {
            var div = document.createRange();
            div.setStartBefore(event.target);
            div.setEndAfter(event.target);
            window.getSelection()
                .addRange(div);
        } else if (event.target.id == "homepage" || event.target.id == "help" || event.target.id == "author") {
            window.open(event.target.href);
        }
    }, false);
It strikes me as odd that you would do something so simple server side and use your bandwidth, processor time, your users' time waiting for the server response, require network connectivity, have it depend on an external service (what happens when the website goes down?), and expose their input both to the server and the network... is JavaScript just that painful? :P
: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
: forummailpk December 28, 2015, 04:17:07 PM
@khofo, i want yo send you a pm with code, but i can't get a code from IRC

@fur, you could've just go right click inspect element and get the code :) Yes, javascript is painful for me since i'm more of a backend developer then frontend, and PHP has better support for needed functions :)
: Re: Hackers toolkit chrome extension - Encoding decoding
: cr4zi8 December 28, 2015, 06:38:08 PM
I feel like this kit is not that useful... If you just wanted to do sql injection automatically why not just use sqlmap? There already BASE 64 encoders/decoders and etc for firefox and probably chrome. Also sorta don't trust this maybe it is just me but this looks sketchy.
: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
: khofo December 29, 2015, 02:34:43 AM
@khofo, i want yo send you a pm with code, but i can't get a code from IRC

@fur, you could've just go right click inspect element and get the code :) Yes, javascript is painful for me since i'm more of a backend developer then frontend, and PHP has better support for needed functions :)


You can Obin.net it and then pm me the link on IRC, I have a bouncer so I'll receive the link at anytime no problem just /query khofo <insert link here>
: Re: Hackers toolkit chrome extension - Encoding decoding
: luverose January 14, 2016, 03:20:35 AM
Where is the tool's source code?I'm not satisfaction with closed source software :P
: Re: Hackers toolkit chrome extension - Encoding decoding
: h4nn1b4L January 30, 2016, 08:41:16 PM
Thanks for this mate.