EvilZone

Hacking and Security => Hacking and Security => Topic started by: forummailpk on December 09, 2015, 10:38:07 PM

Title: Hackers toolkit chrome extension - Encoding decoding
Post by: forummailpk on 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.

Code: [Select]
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 ]
   
Title: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
Post by: Dr4g0n on December 24, 2015, 10:42:32 PM
Do you have the source code for this?
Title: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
Post by: forummailpk on December 25, 2015, 09:28:45 AM
Do you have the source code for this?
Yes, i'm the author
Title: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
Post by: khofo on 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 ?
Title: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
Post by: Fur on 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:
Code: (JavaScript) [Select]
    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
Title: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
Post by: forummailpk on 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 :)
Title: Re: Hackers toolkit chrome extension - Encoding decoding
Post by: cr4zi8 on 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.
Title: Re: [ FREE ] Best HACKING tool for Google Chrome - Hackers Toolkit
Post by: khofo on 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>
Title: Re: Hackers toolkit chrome extension - Encoding decoding
Post by: luverose on January 14, 2016, 03:20:35 AM
Where is the tool's source code?I'm not satisfaction with closed source software :P
Title: Re: Hackers toolkit chrome extension - Encoding decoding
Post by: h4nn1b4L on January 30, 2016, 08:41:16 PM
Thanks for this mate.