how to we add 2 numbers together in fuction javascript

 function num(n1,n2){

     var result = n1+n1;
     console.log(result);

   
}
num(10,10);

javascript prompt

 1.  <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h1   style="color: blue; background-color: black;" id="s">HELLO</h1>
 
       
   <script src="index.js"></script>
</body>
</
html>


1.javascript
function fun(){
  var name =  prompt('what is your name');
  var result = 'hello ' + '' + name;
  console.log(result);
  document.getElementById('s').innerHTML = result;
}
fun();



Responsive Navigation Menu Bar using HTML CSS & JavaScript

Step 1

. create index.html
.next create index.css

Step 2
Create index.html
.<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="index.css">
    <title>Responsive nave bar</title>
</head>
<body>
    <!------nav tags-->
    <nav>
        <label class="logo">Aswinkl71</label>
        <!----ul tags-->
        <ul>
            <li><a href="#">Home</a></li>
            <li><a href="#">About</a></li>
            <li><a href="#">Contact</a></li>
        </ul>
        <!----ul tags-->
    </nav>
    <!------nav tags-->
</body>
</html>



.next step create index.css
*{ padding:0;
     margin:0:
     text-decoration:none;
     list-style:none:}

.next step
body {
  font-family:monsterrat:
}
nav{ width:100%;
          height:80px;
         background:#34495e;
}
.next step
.logo{
  font-size: 35px;
  font-weight: bold;
  color: white;
  padding: 0 100px;
  line-height: 80px;
}

.next step home, about, contact right side

nav ul{
  float: right;
  margin-right:40px
}

.next step home, about , contact same line
nav li {
  display: inline-block;
margin: 0 8px;
  line-height: 80px;
}
. next step

nav a{
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  border: 1px solid transparent;
  padding: 7px 10px;
  border-radius: 3px;

}

.next step
Go to your index.html file <li><a class="active" href="#">Home</a></li>
add a class name on li,a tags"active" iam create class name

.Next on css file

a.active,a:hover{
  border: 1px solid white;
  transition: .5s;
}



hacking videos

1.>dvwa

2.>Website Admin Panel Finder Login Page 2021 Linux

3.>What Is Cross-Site Request Forgery (CSRF)


 
 
4.>SQL injection

 
5.>Install Kali Linux on Windows 10 Malayalam [Tutorial
 
6.> Track_anyone's_location_using_seeker_Kali_linux_hacking_tricks_Malayalam

 
7.>what is no rate limit bug
 
8.>How to Crack ZIP File Password [2021
 
 
 
9.>What is an HTML injection attack Malayalam
10.>What is Social Engineering Toolkit in Kali Linux 


11.>what is Broken link Hijacking

12.>termux instagram hacking
13.>wp scan



 
 



No Rate Limit bug

 



How to crack zip password on Kali Linux - Linux Tutorial


 


Reflected XSS


 Reflected XSS


 

XSSRecon - Reflected XSS Scanner

 

XSSRecon - Reflected XSS Scanner

 

  • Scans a website for reflected Cross-Site-Scripting
  • Zero false positives, its using a real browser checking for the popups
  • Automatic out-of-scope checking (experimental, but works very well yet)
  • Uses Python 3.7 with selenium / chromedriver
  • Crawler or single URL scanner
  • Configurable:
    --target | Target to scan
    --crawl | Activate crawler
    --wordlist | Wordlist to use
    --delay | Delay between requests
    --visible | Visible browser for debugging (chromedriver)
    --silent | Only print when vulns have been found



Aswinkl71

 


Aswinkl71

Navbar

  < nav class = "navbar navbar-expand-lg navbar-dark bg-dark fixed-top" >   < div class = "container" >   ...