Posts

Showing posts from February, 2021

JAVA SCRIPT FUNCTIONS

    GET ELEMENT BY ID: One of many JavaScript HTML methods is getElementById() . The example below "finds" an HTML element (with id="demo"), and changes the element content (innerHTML) to "Hello JavaScript": document. getElementById ( "demo" ). innerHTML = "Hello JavaScript" ;     JavaScript accepts both double and single quotes.   JavaScript Can Change HTML Attribute Values In this example JavaScript changes the value of the src (source) attribute of an <img> tag:  <button onclick="document.getElementById('myImage').src='pic_bulbon.gif'">Turn on the light</button> <img id="myImage" src="pic_bulboff.gif" style="width:100px"> <button onclick="document.getElementById('myImage').src='pic_bulboff.gif'">Turn off the light</button> JavaScript Can Change HTML Styles (CSS) Changing the style of an HTML element, is a varia

HOW TO PUT HTML CSS JAVASCRIPT WEBSITE IN BLOGGER

 https://www.youtube.com/watch?v=PeXcbygnRkw&t=8s&pbjreload=101    dIRECT LINK: https://drive.recmail.net/ codepen.io/

ETHICAL HACKING BASIC TERMS

 In this article, you can learn basic terms used in Ethical Hacking career. Here covers Adware, Anonymous, AntiSec, Attribution, Backdoor, Bot, Brute Force, Bug, Chip-off, Clone phishing, Code, Compiler, Cookies, Cracker, Crypto, Dark Web, Deep Web, DEF CON, DoS, DDoS, Doxing, Digital Certificate, Dumpster Diving, Easter Egg, Encryption, Exploit, Exploit kit, End-to-end encryption, Firewall, Hacker, Hacking, Hacktivist, Hash, IP, IRC, Logic bomb, LilzSec, Malware, Man-in-the-middle, Metadata, Master Program, Nonce, OpSec, PayLoad, Packet sniffer, Phishing, pwned, Remote access, RAT, Ransomware, Rainbow table, Rootkit, Salting, Script kiddie, Shrink Wrap code, Signature, sniffing, social engineering, spear-phishing, Spoofing, Spyware, Spam, Sql Injection, Syrian Electronic Army, Tails, Token, Tor, Time Bomb, Trojan horse, Verification(DUMP), Virus, VPN, Vuln, Wardriving, warez, whaling, White hat, Worm, Zero-day. Suggest us to add some more terms in the list through mail or by direct ch

LINUX COMMANDS ALL IN ONE

 In this article, You can learn Linux commands. You can learn ls, cat, mv, sudo, rm, mkdir, rmdir, man, history, and clear commands.  To open the terminal, press Ctrl+Alt+T in Ubuntu, press Alt+T in Parrot OS or press Alt+F2, type in gnome-terminal, and press enter. In Raspberry Pi, type in lxterminal. There is also a GUI way of taking it, but this is better!    LINUX COMMANDS > Copy and Paste in Terminal Press " CTRL + SHIFT + C " for copy in Terminal.   Press " CTRL + SHIFT + V " for paste in Terminal.  There are several options for copy and pasting like Edit -> Copy, Paste.    > The Ls command       ls  Displays files in the current directory. Directories are shown in blue color and files are shown as white color.     ls </path> Displays files in the given path.      ls -R Listing Sub directories / Files. Use capital letter 'R'.      ls -al Getting detailed file information. First column shows File types & Access permissions, second c