-->

ABOUT US

Our development agency is committed to providing you the best service.

OUR TEAM

The awesome people behind our brand ... and their life motto.

  • Kumar Atul Jaiswal

    Ethical Hacker

    Hacking is a Speed of Innovation And Technology with Romance.

  • Kumar Atul Jaiswal

    CEO Of Hacking Truth

    Loopholes are every major Security,Just need to Understand it well.

  • Kumar Atul Jaiswal

    Web Developer

    Techonology is the best way to Change Everything, like Mindset Goal.

OUR SKILLS

We pride ourselves with strong, flexible and top notch skills.

Marketing

Development 90%
Design 80%
Marketing 70%

Websites

Development 90%
Design 80%
Marketing 70%

PR

Development 90%
Design 80%
Marketing 70%

ACHIEVEMENTS

We help our clients integrate, analyze, and use their data to improve their business.

150

GREAT PROJECTS

300

HAPPY CLIENTS

650

COFFEES DRUNK

1568

FACEBOOK LIKES

STRATEGY & CREATIVITY

Phasellus iaculis dolor nec urna nullam. Vivamus mattis blandit porttitor nullam.

PORTFOLIO

We pride ourselves on bringing a fresh perspective and effective marketing to each project.

  • ES6 Array Destructuring


    ES6 Array Destructuring

     

     

    Array Destructuring


    It allows us to "unpack" arrays or objects into a bunch of variables which makes working with arrays and objects a bit more convenient.


    OR


    Array Destructuring is a way to extract values from  an array and assign them to variables in a concise manner.

    ES6 is different version of the ECMAScript specification. Which is the standard that defines the scripting language that javascript is based on.

    ES6 release on 2015 and there are so many features Arrow function, classes, let and const for variables.





    Syntax

     

     

    let [a, b] = [1, 2, 3, 4, 5, 6];
    let {name, age} = {firstName: 'atul', lastName: 'kumar', age:23};
    
    

     

    Example

     

    Actually we have used this code in reactjs called as TheArrow.jsx

     

     

    const myArray = [1, 2, 3, 4, 5];
    const [first, second, ...rest] = myArray;
    
    console.log(first);
    console.log(second);
    console.log(rest); 
    
    
    
    



     

    In this example first & second variables hold the first & second elements of the Array and the rest variables hold the remaining elements in new Array.


    Output


    ES6 Array Destructuring


     

    Disclaimer

     

    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.

     

  • ES6 Arrow functions with find and findindex function

     

    ES6 Arrow functions with find and findindex function

     

    Array Function: find() and findIndex()



    ES6 introduced 2 new methods to search for elements inside the Array. ES6 is different version of the ECMAScript specification. Which is the standard that defines the scripting language that javascript is based on.

    ES6 release on 2015 and there are so many features Arrow function, classes, let and const for variables.


    find() - It is used to search for an element in the array that matches some condition. It returns the first element that matches the condition.


    findIndex() - It is quite similar to the find() method. The difference is that findIndex() method returns the index of the element instead of the element itself.



    Example



    Here written code says that if our condition are matches or true condition then it returns the first element. If you want in replace of return true you can write any if, else condition or write even or odd conditon.




     

    const numArr = [-1, -2, -3, -4, 1, 2, 3, 4]
    
    const result = numArr.find(item => {
        return true;
    })
    
    
    console.log('Result => ', result);
    
    
     
    

     Output

     

     

    ES6 Arrow functions with find and findindex function

     

     

    Example (return False)


    if we return false statement then output is undefined...



    ES6 Arrow functions with find and findindex function


    Example

     

    Let's take another example of even - odd condition for returning the matches array elements.

    return item % 2 === 0; 

     

     

     

    ES6 Arrow functions with find and findindex function


     


    Disclaimer

     

    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.


      

     

  • ES6 Spread operator in javascript

     

    ES6 Spread operator in javascript

     

     Spread Operator

     

    Spread syntax allows arrays and objects to be expanded into :

    - elements in case of array.
    - key-value pairs in case of object.



    ES6 is different version of the ECMAScript specification. Which is the standard that defines the scripting language that javascript is based on.

    ES6 release on 2015 and there are so many features Arrow function, classes, let and const for variables.


    For use copy iterable object (...) allows is to quickly copy all or part of an existing array or object into another array or object.

    Actually we have used this code in reactjs called as TheArrow.jsx

     

    Example


     

    import React from 'react'
    
    function TheSpread() {
    
        let myarr1 = [1, 2, 3, 4, 5, 6];
        let myarr2 = [7, 8, 9, 10, 11, 12];
        let myarr3 = [...myarr1, ...myarr2];
    
        console.log(myarr3);
    
    
      
      return (
        <div>
        
        <h1>Check Console</h1>
        
        
        </div>
      )
    }
    
    export default TheSpread
    

     

     

     

    Output

     

     

    ES6 Spread operator in javascript

     

     


    Disclaimer

     

    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.


     

  • ES6 Rest Operator in Javascript


    ES6 rest operator


     

    ES6 Rest Operator

     

    The rest operator in JavaScript is used to collect all remaining arguments of a function into a single array. It is represented by three consecutive dots (...) followed by a parameter name. This operator is particularly useful when you have a function that accepts a variable number of arguments.

     
    ES6 is different version of the ECMAScript specification. Which is the standard that defines the scripting language that javascript is based on.

    ES6 release on 2015 and there are so many features Arrow function, classes, let and const for variables.

    Suppose we have a function with some parameter like -

     

    function  sum(a, b) {
        return a+b;
    }
    
    sum(2, 6)  // output is 8
    
    




    But there is some problem because of if user have 2 paramters then we  will enter the value of 2 paramters only But if we use this like below - 

     


    function sum(...args) {
        console.log(args)
    }
    
    sum(2, 5, 4, 7)
    
    
    



    when we use this type of method we can print all the numbers as a argument value like 2, 5, 4, 7 and also we can add these all numbers.


    Actually we have used this code in reactjs called as TheArrow.jsx



    Example



    import React from 'react'
    
    function TheRest() {
    
        const therest = ( num1, num2, ...args) => {
           
                console.log(`The number is ${args}`)
                let sum = num1 + num2;
                for(let i = 0; i < args.length; i++) {
                    sum +=args[i];
                }
                console.log('The total sum is' , sum);
        }
    
        therest(2, 3, 4, 5)
      return (
        <div>
        
        <h1>Check console</h1>
        
        
        </div>
      )
    }
    
    export default TheRest
    




    Output



    ES6 Rest Operator in Javascript



    Disclaimer

     

    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.


  • ES6 Arrow function in Javascript


    ES6 Arrow function in javascript

     

    ES6 Arrow Function


    ES6 Gives us a new syntax for defining functions using a fat arrow. Arrow functions bring a lot of clarity & code reduction.

    ES6 is different version of the ECMAScript specification. Which is the standard that defines the scripting language that javascript is based on.

    ES6 release on 2015 and there are so many features Arrow function, classes, let and const for variables.




    Syntax:


    function greetings(name) {
        return (' Welcome ' + name)
    }
    
    const greetings = (name) => {
        return (`Welcome ${nmae}`)
    }
    
    



    Actually we have used this code in reactjs called as TheArrow.jsx



    Example


    import React from 'react'
    
    function Thearrowfunc() {
    
        
        function greetings(name) {
            return ('welcome ' + name);
         }
         
         const myGreeting = (name, age) =>  {
              console.log(`welcome ${name} ${age}`)
         }
          // without curley braces also we can use arrow function 
        console.log(greetings('atul'));
         console.log(myGreeting('atul', 23));
      return (
        
    <h1>Check console</h1>
    ) } export default Thearrowfunc




    Output




    Disclaimer

     

    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.



  • Crack password with Hashcat

     


     

     

    Hashcat is a password cracker used to crack password hashes. A hash is a one-way function that takes a word or string of words and turns them into a fixed length of random characters. This is a much more secure method of storing passwords rather than storing them in plain text. It is not reversible.


    Hashcat attempts to crack these passwords by guessing a password, hashing it, and then comparing the resulting hash to the one it’s trying to crack.


    Hash Analyzer Tunnelsup.com Hash Analyser allows you to stick a hash into there site and will give you there best guess at what the hash is. This was all i used for the Crack the hash challenge and was pretty much spot on until some of the later tasks.


    Hash-Identifier can be found pre-installed in Kali Linux and will tell you the possible hashing algorithm for the hash you enter. The Nice thing about this other then it already being installed in kali is that it gives you a few alternatives which can help finding finding the right mode in hashcat.


    HashID This is a python based hash identifying tool which needs to be downloaded from there GitHub Repo. The cool thing about this tool is not only does it identify the hashes but also can give you the corresponding hashcat mode as part of the output.


     


     



    hashcat -h | grep sha256
    hashcat -h | grep md5
    hashcat -h | grep salt
    hashcat -h | grep sha
    hashcat --help

     


    In this lab, we will create a set of hashes and then use a dictionary to crack these hashes. The first step is to create the hashes. Open a terminal and use the following command to create a new txt document filled with some hashes: 

     


    echo "dc647eb65e6711e155375218212b3964
    eb61eead90e3b899c6bcbe27ac581660
    958152288f2d2303ae045cffc43a02cd
    2c9341ca4cf3d87b9e4eb905d6a3ec45
    75b71aa6842e450f12aca00fdf54c51d
    031cbcccd3ba6bd4d1556330995b8d08
    b5af0b804ff7238bce48adef1e0c213f" > target-hashes.txt
    


     


     

    These hashes comprise 7 different password which we will attempt to crack.

     

    The next step is to choose the wordlist we will use for cracking the hashes. We will be using the “rockyou.txt” file. Type the following to locate the file:

    locate rockyou.txt

     

    Navigate back to the home directory by typing cd. We are now ready to begin the attack.

    We will use the following command to crack the password hashes:



    hashcat -m 0 -a 0 -o cracked.txt target-hashes.txt /home/hackerboy/Dcouments/rockyou.txt


    Let’s break down each of these options.


    # The -m 0 option tells hashcat that we are attempting to crack MD5 hash types
    # The -a 0 option tells hashcat we are using a dictionary attack
    # The -o cracked.txt option is creating the output file for the cracked passwords
    # The target_hashes.txt is the file containing the hashes
    # The /home/hackerboy/Dcouments/rockyou.txt is the wordlist we will use for this dictionary attack

     

     




     

    If you want to more cracking hashes, follow below the article on TryHackMe Cracking Hashes.

     

    Click Here 

     

     

     

    Disclaimer

     

    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.



     

     

  • Information Gathering using theHarvester


    Information Gathering using theHarvester

     

     

    Information Gathering using theHarvester 


    Information gathering is often the first step of any penetration test. theHarvester is a very powerful OSINT (Open-Source Intelligence Tool) for finding information on a target URL. It searches multiple sites for information about the target URL and displays all the information it finds. It is particularly useful for finding names of people and their email addresses as well as subdomains of the target site.

    First of all we will installing  python3-pip, virtualenv.

    sudo apt-get install python3-pip
    sudo pip3 install virtualenv
    virtualenv venv



    Information Gathering using theHarvester



    Then clone the git repo and change the directory:


    git clone https://github.com/laramies/theHarvester.git
    cd theHarvester




    Information Gathering using theHarvester


    Now, install the requirements 

    pip3 install -r requirements.txt



    Information Gathering using theHarvester


    Close this terminal and open a new one. Now, we are ready to use “theHarvester.py” in “kali” user’s home directory. Type:

    cd /home/kali/theHarvester/
    ./theHarvester.py -v



     

    Information Gathering using theHarvester

     

     

     Now we want to gather information about our target, we can specify the following:

    ./theHarvester.py -d hackaday.com \ -l 300 -b all


    The “-b all” tag will search all search engines available to theHarvester for information regarding hackaday.com. As you can see, it is an extremely useful tool for discovering email addresses, names of people associated with the target, sub-domain names and IP addresses.


    Information Gathering using theHarvester


     If we wanted to display this information in an easier to read format, we could add the -f tag at the end:



    ./theHarvester.py -d hackaday.com -l 300 -b all -f hackaday.com.results

     

    This will save the information gathered in a HTML file called hackaday.com.results.html” When this file is opened, it provides the information gathered in a layout which is much easier to read.

     

     

    Disclaimer

     

    All tutorials are for informational and educational purposes only and have been made using our own routers, servers, websites and other vulnerable free resources. we do not contain any illegal activity. We believe that ethical hacking, information security and cyber security should be familiar subjects to anyone using digital information and computers. Hacking Truth is against misuse of the information and we strongly suggest against it. Please regard the word hacking as ethical hacking or penetration testing every time this word is used. We do not promote, encourage, support or excite any illegal activity or hacking.


     

     
  • WHAT WE DO

    We've been developing corporate tailored services for clients for 30 years.

    CONTACT US

    For enquiries you can contact us in several different ways. Contact details are below.

    Hacking Truth.in

    • Street :Road Street 00
    • Person :Person
    • Phone :+045 123 755 755
    • Country :POLAND
    • Email :contact@heaven.com

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.