NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

<html>
<head>
<title>
NMAP executer
</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Heebo:wght@300&family=Open+Sans:ital@1&family=PT+Sans+Narrow&display=swap" rel="stylesheet">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<style>
@keyframes texterExpand {
0% { height:0px;}
10% { height:40px;}
20% { height:80px;}
30% { height:120px;}
40% { height:160px;}
50% { height:200px;}
60% { height:240px;}
70% { height:280px;}
80% { height:320px;}
90% { height:360px;}
100% { height:400px;}
}
html{
background-color: #ffdead;
}
nav{
border-bottom: 2px solid black;
padding-bottom: 18px;
padding-top: 4px;
display: none;
}
.actorContainer{
display: flex;
justify-content: center;
border-bottom: 2px solid black;
}
.actor{
font-family: 'PT Sans Narrow', sans-serif;
margin: 16px;
padding : 12px;
font-size:34px;
background-color:black;
color:#ffdead;
display:inline-block;
}
.userListInput{
color:white;
display:block;
width:100%;
animation-name:texterExpand;
animation-duration: 1500ms;
animation-fill-mode: forwards;

color:#ffdead;
/*background-color: #7a95f5;*/
background-color: black;
font-family: 'PT Sans Narrow', sans-serif;
margin-top: 12px;
}
#userListInput{
display:none;
content:none;
resize:none;
margin-top: 10px;
font-size: 32px;
border:none;
font-family: 'Open Sans', sans-serif;
}
.userListInput::placeholder{
color:#ffdead;
font-size: 32px;
}
.actor:hover{
cursor:pointer;
background-color: white;
}

#small{
background-color: white;
}
#pageHeader{
font-family: 'PT Sans Narrow', sans-serif;
text-align: center;
font-size: 74px;
padding-top:12px;
padding-bottom:16px;
border-bottom: 2px solid black;
}
#ipList{
font-size:28px;
font-family: 'Open Sans', sans-serif;
position: relative;
}
#sizeEditor:hover{
cursor:pointer;
}
#bulletcheck:hover{
cursor: pointer;
}
#textEdit{
display: none;
}
#clip:hover{
cursor:pointer;
background-color: white;
}
#lhead,.actorContainer{
position: relative;
top: 160px;
}
@media screen and (max-width: 700px) {
.editor{
font-size: 15px;

}
}
</style>
</head>
<body>
<div id="pageHeader">
NMAP executer
</div>

<div class="actorContainer">
<div class="actor" id="newList" onclick="textStarter()">
New IP list
</div>
</div>
<nav>
<div id="sizeEditor">
<div class="editor" id="small" onclick="changeSize('Small')">
Small
</div>
<div class="editor" id="medium" onclick="changeSize('Medium')">
Medium
</div>
<div class="editor" id="large" onclick="changeSize('Large')">
Large
</div>
</div>
<div class="editor" id="clip" onclick="copier()">
Copy to clipboard
</div>
</nav>
<div id="lbody">
<textarea id="userListInput" placeholder="Add your list of IP's--->"></textarea>
</div>
<div id="ipList"></div>
<div style="width: 100%; height: 12px;display: inline-block;"></div>
<script>
var userListInput=document.getElementById("userListInput");
var newList=document.getElementById("newList");
var ipList=document.getElementById("ipList");
var nav=document.getElementsByTagName("nav");
var editor=document.getElementById("textEdit");
let copyGhost=document.getElementById("copyGhost");
var textHolder="";
function newList(){
userListInput.style.display="none";
if(userListInput.getAttribute("oninput")!=""){
userListInput.setAttribute("oninput","");
}
textHolder=lineDivider(userListInput.value);
for(var i=0;i<textHolder.length;i++)
{
lister.innerText+="• "+textHolder[i]+"nn";
}
userListInput.value="";
lister.style.top="26px";
editor.style.display="inline-block";
nav[0].style.display="flex";
nav[0].style.justifyContent="space-evenly";
nav[0].style.position="relative";
nav[0].style.top="16px";
}
function textEditor(){
if(editor.innerText=="Done")
{
nav[0].style.display="flex";
newText.style.display="inline-block";
editor.innerText="Edit text";
editor.style.backgroundColor="black";
textHolder=cutBlanks(lineDivider(userListInput.value));
textHolder.pop();
//console(textHolder);
//textHolder=cutBlanks(textHolder);
userListInput.value="";
userListInput.style.display="none";
lister.style.display="block";
lister.innerText="";
for(var i=0;i<textHolder.length;i++)
{
lister.innerText+="• "+textHolder[i]+"nn";
}
}
else{
nav[0].style.display="none";
newText.style.display="none";
editor.innerText="Done";
editor.style.backgroundColor="white";
lister.style.display="none";
userListInput.style.display="inline-block";
for(var i=0;i<textHolder.length;i++)
{
userListInput.value+=textHolder[i]+"nn";
}
}
}
function textStarter(){
if(newText.innerText=="New IP list")
{
nav[0].style.display="none";
document.getElementById("pageHeader").style.position="initial";
document.getElementsByClassName("actorContainer")[0].style.position="initial";
textHolder="";
lister.innerText="";
lister.style.direction="ltr";
userListInput.value="";
userListInput.classList.add("userListInput");
userListInput.style.display="block";
userListInput.style.fontFamily="'PT Sans Narrow', sans-serif";
userListInput.style.direction="ltr";
editor.style.display="none";
newText.style.backgroundColor="white";
newText.innerText="Done";

}
else{
newList();
newText.style.backgroundColor="black";
newText.innerText="New list";
}
}
function changeList(type)
{
lister.innerText="";
if(type=='checkbox')
{
for(var i=0;i<textHolder.length;i++)
{
lister.innerHTML+="<input type='checkbox'>"+" "+textHolder[i]+"<br><br>";
}
document.getElementById("checkbox").style.backgroundColor="white";
document.getElementById("bulletpoint").style.backgroundColor="black";
}
else{
for(var i=0;i<textHolder.length;i++)
{
lister.innerText+="• "+textHolder[i]+"nn";
}
document.getElementById("checkbox").style.backgroundColor="black";
document.getElementById("bulletpoint").style.backgroundColor="white";
}

}
function copier()
{
copyGhost.style.display="block";
copyGhost.value=lister.innerText;
copyGhost.select();
copyGhost.setSelectionRange(0, 99999);
document.execCommand('copy');
copyGhost.value="";
copyGhost.style.display="none";

}

function cutBlanks(text)
{
let newertext=[];
for(var i=0;i<text.length;i++)
{
if(i%2==0)
{
newertext.push(text[i]);
}
}
return newertext;
}
function changeSize(size){
if(size=="Small")
{
lister.style.fontSize="28px";
document.getElementById("small").style.backgroundColor="white";
document.getElementById("medium").style.backgroundColor="black";
document.getElementById("large").style.backgroundColor="black";
}
if(size=="Medium")
{
lister.style.fontSize="34px";
document.getElementById("small").style.backgroundColor="black";
document.getElementById("medium").style.backgroundColor="white";
document.getElementById("large").style.backgroundColor="black";
}
if(size=="Large")
{
lister.style.fontSize="40px";
document.getElementById("small").style.backgroundColor="black";
document.getElementById("medium").style.backgroundColor="black";
document.getElementById("large").style.backgroundColor="white";
}
}

</script>
</body>
</html>
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.