Skip to content

Commit

Permalink
ipstorm tracker
Browse files Browse the repository at this point in the history
  • Loading branch information
kpatsakis committed Dec 26, 2020
1 parent 3c6f710 commit 55c4480
Show file tree
Hide file tree
Showing 6 changed files with 3,541 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,13 @@ <h2>Latest news</h2>
<div class="featured-box-col1 wow fadeInRight delay-04s">
<i class="fa-book"></i>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>IPStorm Tracker</h3>
<p>IPFS is currently plagued by IPStorm malware, a botnet which is exploits IPFS for communication of the nodes and sending commands to the infected devices. <a href="ipstorm/ipstrorm_tracker.html">This webpage</a> offers a daily tracker of the botnet with data collected directly collected from IPFS.</p>
</div>
<div class="featured-box-col2 wow fadeInRight delay-04s">
<h3>Analysing the fall 2020 Emotet campaign</h3>
<p>University of Piraeus, Athena Research Center, and Neurosoft through its cybersecurity solution Neutrify, released a white paper on the latest campaign of Emotet, which had a significant impact in several countries worldwide. Follow this <a href="files/emotet_analysis.pdf">link</a> to read it. The corrsponding IoCs are also provided for <a href="files/emotet_ioc_docs.txt">documents</a> and <a href="files/emotet_ioc_c2.txt">C2 servers</a>.
<p>University of Piraeus, Athena Research Center, and Neurosoft through its cybersecurity solution Neutrify, released a white paper on the latest campaign of Emotet, which had a significant impact in several countries worldwide. Follow this <a href="files/emotet_analysis.pdf">link</a> to read it. The corrsponding IoCs are also provided for <a href="files/emotet_ioc_docs.txt">documents</a> and <a href="files/emotet_ioc_c2.txt">C2 servers</a>.</p>
</div>
</div>
<div class="featured-box">
Expand Down
149 changes: 149 additions & 0 deletions ipstorm/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
#piediv {
width: 35%;
height: 325px;
float: right;
zoom: 76%;
margin: 140px 0px 0px 0px;
}

#worlddiv {
width: 65%;
height: 450px;
float: left;
}

/* Remove the navbar's default margin-bottom and rounded borders */
body {
font-family: 'Source Sans Pro', sans-serif;
font-size: 16px;
font-weight: normal;
line-height: 26px;
margin: 0;
}

a {
color: #F44336;
}

.navbar {
background-color: #0b0b0b;
margin-bottom: 0;
border-radius: 0;
height: 75px;
}

/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {
height: 450px
}

/* Set gray background color and 100% height */
.sidenav {
padding-top: 20px;
height: 100%;
}

/* Set black background color, white text and some padding */
footer {
/* background-color: #555; */
/* color: white; */
padding: 15px;
}

/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
.sidenav {
height: auto;
padding: 15px;
}

.row.content {
height: auto;
}
}

blockquote {
font-size: 1.1em;
line-height: 1.6em;
padding: 20px 20px 20px 40px;
border-left: none;
position: relative;
text-indent: -19px
}

section#block_content {
min-height: 400px;
padding-top: 40px;
text-align: left
}

blockquote p {
font-size: 1em
}

blockquote:before,
blockquote:after {
font-family: Arial, serif;
font-size: 2.5em;
vertical-align: middle;
line-height: 0
}

blockquote:before {
content: open-quote;
margin-right: 4px
}

blockquote:after {
content: close-quote;
margin-left: 3px
}

blockquote.blockstyle,
blockquote.style2 {
background: #fff;
font-style: italic
}

blockquote.blockstyle p,
blockquote.style2 p {
display: inline
}

blockquote.blockstyle {
border-left: 3px solid #F44336;
position: relative
}

blockquote.blockstyle>span.triangle:before {
text-indent: 0;
content: "\f0da";
font-family: FontAwesome;
color: #F44336;
position: absolute;
left: -1px;
top: 50%;
margin-top: -11px;
font-style: normal
}

blockquote.blockstyle:before,
blockquote.blockstyle:after {
color: #F44336
}

blockquote.blockstyle.border-color-blue {
border-color: #01b7f2
}

blockquote.blockstyle.border-color-blue>span.triangle:before {
color: #01b7f2
}

blockquote.blockstyle.border-color-yellow {
border-color: #fdb714
}

blockquote.blockstyle.border-color-yellow>span.triangle:before {
color: #fdb714
}
Loading

0 comments on commit 55c4480

Please sign in to comment.