Skip to main content

Posts

Showing posts from July, 2017

HOW GOOGLE SEARCH WORKS

SO we billions of people every day search in google. For their needs and queries. But did you know how google works behind your web browsing? There are thousands of billions of websites and web pages available in the cloud or web. So how Google knows what is the appropriate results for you.OK so let's dive into the answer. Google at first use a crawl, which is crawling through each and every website available on the web and make a list on Google's database and classify them by their topics. Then google use a specific type of algorithm to short out the list and rank the most useful ones by the feedback from us. So if you are a web developer or an owner of a website then you need to index your site to google to get a good number of visitors. To know more please visit-  Google crawling-indexing/

WHAT IS PAYLOAD AND BACKDOOR

  P AYLOAD - The term payload in the field of hacking and cyber security means a kind of malicious program or virus which was sent and generated by a hacker and which executed on the victim's PC or system and do a bunch of malicious acts like bad code injection, data stealing, data logging, and bypassing the firewall and creating a backdoor.  IN general, this kind of file or virus needs to be executed the first time. It is used by both the ethical and the black-hat hackers but the purpose is different.   TO generate that kind of file is not a crime, but if you apply that to any kind of bad intention is a big crime.    IN future I will teach you how to make a payload in the practical video. for that please subscribe>> www.youtube.com/c/dnytechnicals BACKDOOR -  The term back door in the field of hacking and cyber security means a secret and safe way to hack into someone system by bypassing the firewall.  In general, it is created by payloads or viruses in the

WHAT IS KALI LINUX?

KALI LINUX is generally a operating system based on linux , but its not for general or official usage. .It is specially developed for hacking and penetration testing and security auditing . It is based on linux Debian distribution. This os is developed by OFFENSIVE SECURITY. KALI LINUX is released on 13 march 2013. OFFICIAL WEBSITE=>> https://www.kali.org/ it is a freeware . (free software )  it is a open source software , so you can develop any tools and you also optimize it as per your needs . and you can be a part of their development team. it also comes with multi language support. and last but not the least it comes with above 600 penetration testing tool included.  MINIMUM SYSTEM CONFIGURATION=>>  KALI linux required a minimum of 10 gb hdd space tobe installed. 512 mb of ram and minimum of i386 and amd64 architecture. a bootable cd or dvd drive or a usb device.

BATCH FILE SCRIPTING

WHAT IS BATCH FILE SCRIPTING? -> THE batch file scripting is a type of coding which was exicuted only on windows machines, with the help of the CMD . The code is basically writen with the help of the notepad. and its save with the extension of .bat | THERE ARE SEVERAL COMMANDS FOR THE . BAT SCRIPTING .. THE MOST COMMON AND USEFUL  CODES ARE ->> TITLE This batch command sets the title displayed in the console windowS. DISKPART This batch command shows and configures the properties of disk partitions. TREE This batch command displays a tree of all subdirectories of the current directory to any level of recursion or depth. SHUTDOWN This batch command shuts down a computer, or logs off the current user. TIME This batch command sets or displays the time. EXIT This batch command exits the DOS console. CLS This batch command clears the screen. CD This batch command helps in making changes to a different directory, or displays the current directory. Crea