Browse Source

template small update

master
arnaucube 2 years ago
parent
commit
34d13caa19
10 changed files with 30 additions and 30 deletions
  1. +1
    -1
      blogo-input/blogo.json
  2. +1
    -1
      blogo-input/posts/blind-signatures-ec_thumb.md
  3. +1
    -1
      blogo-input/posts/blogo_thumb.md
  4. +1
    -1
      blogo-input/posts/coffeeminer_thumb.md
  5. +1
    -1
      blogo-input/posts/flock-botnet_thumb.md
  6. +4
    -4
      public/blind-signatures-ec.html
  7. +4
    -4
      public/blogo.html
  8. +4
    -4
      public/coffeeminer-hacking-wifi-cryptocurrency-miner.html
  9. +4
    -4
      public/flock-botnet.html
  10. +9
    -9
      public/index.html

+ 1
- 1
blogo-input/blogo.json

@ -1,5 +1,5 @@
{
"title": "ArnauCube - Blog",
"title": "arnaucube",
"relativePath": "/blog",
"absoluteUrl": "https://arnaucube.com/blog",
"postsDir": "posts",

+ 1
- 1
blogo-input/posts/blind-signatures-ec_thumb.md

@ -1,4 +1,4 @@
## Notes on blind signatures over elliptic curves
### Notes on blind signatures over elliptic curves
In this notes, we will cover the scheme proposed at *"New Blind Signature Schemes Based on the (Elliptic Curve) Discrete Logarithm Problem"* paper by Hamid Mala & Nafiseh Nezhadansari.
*2021-07-30*

+ 1
- 1
blogo-input/posts/blogo_thumb.md

@ -1,4 +1,4 @@
## Static blog template engine implementation in Go
### Static blog template engine implementation in Go
How has this blog been made? In this post we will see how to develop a minimalistic static blog template engine with Go.
*2017-12-26*

+ 1
- 1
blogo-input/posts/coffeeminer_thumb.md

@ -1,4 +1,4 @@
## CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests
### CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests
The goal of this post, is to explain how can be done the attack of MITM (Machine-In-The-Middle) to inject some javascript in the html pages, to force all the machines connected to a WiFi network to be mining a cryptocurrency for the attacker.
*2018-01-04*

+ 1
- 1
blogo-input/posts/flock-botnet_thumb.md

@ -1,4 +1,4 @@
## Auto generated tweets from Markov chains
### Auto generated tweets from Markov chains
Developing a twitter botnet with autonomous bots replying tweets with text generated based on probabilities in Markov chains
*2017-12-29*

+ 4
- 4
public/blind-signatures-ec.html

@ -4,16 +4,16 @@
<head>
<meta name="description" content="In this notes, we will cover the scheme proposed at 'New Blind Signature Schemes Based on the (Elliptic Curve) Discrete Logarithm Problem' paper by Hamid Mala & Nafiseh Nezhadansari." />
<meta charset="utf-8">
<title>Notes on blind signatures over elliptic curves - ArnauCube - Blog</title>
<meta name="title" content="Notes on blind signatures over elliptic curves - ArnauCube - Blog">
<title>Notes on blind signatures over elliptic curves - arnaucube</title>
<meta name="title" content="Notes on blind signatures over elliptic curves - arnaucube">
<meta name="description" content="In this notes, we will cover the scheme proposed at 'New Blind Signature Schemes Based on the (Elliptic Curve) Discrete Logarithm Problem' paper by Hamid Mala & Nafiseh Nezhadansari.">
<meta property="og:title" content="Notes on blind signatures over elliptic curves - ArnauCube - Blog" />
<meta property="og:title" content="Notes on blind signatures over elliptic curves - arnaucube" />
<meta property="og:description" content="In this notes, we will cover the scheme proposed at 'New Blind Signature Schemes Based on the (Elliptic Curve) Discrete Logarithm Problem' paper by Hamid Mala & Nafiseh Nezhadansari." />
<meta property="og:url" content="https://arnaucube.com/blog/blind-signatures-ec.html" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://arnaucube.com/blog/img/posts/blind-signatures-ec/flow1.png" />
<meta name="twitter:title" content="Notes on blind signatures over elliptic curves - ArnauCube - Blog">
<meta name="twitter:title" content="Notes on blind signatures over elliptic curves - arnaucube">
<meta name="twitter:description" content="In this notes, we will cover the scheme proposed at 'New Blind Signature Schemes Based on the (Elliptic Curve) Discrete Logarithm Problem' paper by Hamid Mala & Nafiseh Nezhadansari.">
<meta name="twitter:image" content="https://arnaucube.com/blog/img/posts/blind-signatures-ec/flow1.png">
<meta name="twitter:card" content="summary_large_image">

+ 4
- 4
public/blogo.html

@ -4,16 +4,16 @@
<head>
<meta name="description" content="How has this blog been made? In this post we will see how to develop a minimalistic static blog template engine with Go." />
<meta charset="utf-8">
<title>Static blog template engine implementation in Go - ArnauCube - Blog</title>
<meta name="title" content="Static blog template engine implementation in Go - ArnauCube - Blog">
<title>Static blog template engine implementation in Go - arnaucube</title>
<meta name="title" content="Static blog template engine implementation in Go - arnaucube">
<meta name="description" content="How has this blog been made? In this post we will see how to develop a minimalistic static blog template engine with Go.">
<meta property="og:title" content="Static blog template engine implementation in Go - ArnauCube - Blog" />
<meta property="og:title" content="Static blog template engine implementation in Go - arnaucube" />
<meta property="og:description" content="How has this blog been made? In this post we will see how to develop a minimalistic static blog template engine with Go." />
<meta property="og:url" content="https://arnaucube.com/blog/blogo.html" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://arnaucube.com/blog/" />
<meta name="twitter:title" content="Static blog template engine implementation in Go - ArnauCube - Blog">
<meta name="twitter:title" content="Static blog template engine implementation in Go - arnaucube">
<meta name="twitter:description" content="How has this blog been made? In this post we will see how to develop a minimalistic static blog template engine with Go.">
<meta name="twitter:image" content="https://arnaucube.com/blog/">
<meta name="twitter:card" content="summary_large_image">

+ 4
- 4
public/coffeeminer-hacking-wifi-cryptocurrency-miner.html

@ -4,16 +4,16 @@
<head>
<meta name="description" content="The goal of this post, is to explain how can be done the attack of MITM (Machine-In-The-Middle) to inject some javascript in the html pages, to force all the machines connected to a WiFi network to be mining a cryptocurrency for the attacker." />
<meta charset="utf-8">
<title>CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests - ArnauCube - Blog</title>
<meta name="title" content="CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests - ArnauCube - Blog">
<title>CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests - arnaucube</title>
<meta name="title" content="CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests - arnaucube">
<meta name="description" content="The goal of this post, is to explain how can be done the attack of MITM (Machine-In-The-Middle) to inject some javascript in the html pages, to force all the machines connected to a WiFi network to be mining a cryptocurrency for the attacker.">
<meta property="og:title" content="CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests - ArnauCube - Blog" />
<meta property="og:title" content="CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests - arnaucube" />
<meta property="og:description" content="The goal of this post, is to explain how can be done the attack of MITM (Machine-In-The-Middle) to inject some javascript in the html pages, to force all the machines connected to a WiFi network to be mining a cryptocurrency for the attacker." />
<meta property="og:url" content="https://arnaucube.com/blog/coffeeminer-hacking-wifi-cryptocurrency-miner.html" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://arnaucube.com/blog/img/posts/coffeeMiner/coffeeMiner-network-attack.png" />
<meta name="twitter:title" content="CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests - ArnauCube - Blog">
<meta name="twitter:title" content="CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests - arnaucube">
<meta name="twitter:description" content="The goal of this post, is to explain how can be done the attack of MITM (Machine-In-The-Middle) to inject some javascript in the html pages, to force all the machines connected to a WiFi network to be mining a cryptocurrency for the attacker.">
<meta name="twitter:image" content="https://arnaucube.com/blog/img/posts/coffeeMiner/coffeeMiner-network-attack.png">
<meta name="twitter:card" content="summary_large_image">

+ 4
- 4
public/flock-botnet.html

@ -4,16 +4,16 @@
<head>
<meta name="description" content="Developing a twitter botnet with autonomous bots replying tweets with text generated based on probabilities in Markov chains" />
<meta charset="utf-8">
<title>Auto generated tweets from Markov chains - ArnauCube - Blog</title>
<meta name="title" content="Auto generated tweets from Markov chains - ArnauCube - Blog">
<title>Auto generated tweets from Markov chains - arnaucube</title>
<meta name="title" content="Auto generated tweets from Markov chains - arnaucube">
<meta name="description" content="Developing a twitter botnet with autonomous bots replying tweets with text generated based on probabilities in Markov chains">
<meta property="og:title" content="Auto generated tweets from Markov chains - ArnauCube - Blog" />
<meta property="og:title" content="Auto generated tweets from Markov chains - arnaucube" />
<meta property="og:description" content="Developing a twitter botnet with autonomous bots replying tweets with text generated based on probabilities in Markov chains" />
<meta property="og:url" content="https://arnaucube.com/blog/flock-botnet.html" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://arnaucube.com/blog/img/posts/flock-botnet/markovchain.png" />
<meta name="twitter:title" content="Auto generated tweets from Markov chains - ArnauCube - Blog">
<meta name="twitter:title" content="Auto generated tweets from Markov chains - arnaucube">
<meta name="twitter:description" content="Developing a twitter botnet with autonomous bots replying tweets with text generated based on probabilities in Markov chains">
<meta name="twitter:image" content="https://arnaucube.com/blog/img/posts/flock-botnet/markovchain.png">
<meta name="twitter:card" content="summary_large_image">

+ 9
- 9
public/index.html

@ -4,16 +4,16 @@
<head>
<meta name="description" content="arnaucube blog" />
<meta charset="utf-8">
<title>ArnauCube - Blog</title>
<meta name="title" content="ArnauCube - Blog">
<title>arnaucube</title>
<meta name="title" content="arnaucube">
<meta name="description" content="arnaucube blog">
<meta property="og:title" content="ArnauCube - Blog" />
<meta property="og:title" content="arnaucube" />
<meta property="og:description" content="arnaucube blog" />
<meta property="og:url" content="https://arnaucube.com/blog" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://arnaucube.com/blog/img/logoArnauCube.png" />
<meta name="twitter:title" content="ArnauCube - Blog">
<meta name="twitter:title" content="arnaucube">
<meta name="twitter:description" content="arnaucube blog">
<meta name="twitter:image" content="https://arnaucube.com/blog/img/logoArnauCube.png">
<meta name="twitter:card" content="summary_large_image">
@ -48,8 +48,8 @@
<div class="container" style="margin-top:40px;max-width:800px;">
<a href='/blog/blind-signatures-ec.html'><div class="row" style="color:#000000;text-decoration:none;">
<h2>Notes on blind signatures over elliptic curves</h2>
<a href='/blog/blind-signatures-ec.html'><div class="row" style="color:#000000;text-decoration:none;">
<h3>Notes on blind signatures over elliptic curves</h3>
<p>In this notes, we will cover the scheme proposed at <em>&ldquo;New Blind Signature Schemes Based on the (Elliptic Curve) Discrete Logarithm Problem&rdquo;</em> paper by Hamid Mala &amp; Nafiseh Nezhadansari.</p>
@ -59,7 +59,7 @@
</div>
</a><a href='/blog/coffeeminer-hacking-wifi-cryptocurrency-miner.html'><div class="row" style="color:#000000;text-decoration:none;">
<h2>CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests</h2>
<h3>CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests</h3>
<p>The goal of this post, is to explain how can be done the attack of MITM (Machine-In-The-Middle) to inject some javascript in the html pages, to force all the machines connected to a WiFi network to be mining a cryptocurrency for the attacker.</p>
@ -69,7 +69,7 @@
</div>
</a><a href='/blog/flock-botnet.html'><div class="row" style="color:#000000;text-decoration:none;">
<h2>Auto generated tweets from Markov chains</h2>
<h3>Auto generated tweets from Markov chains</h3>
<p>Developing a twitter botnet with autonomous bots replying tweets with text generated based on probabilities in Markov chains</p>
@ -79,7 +79,7 @@
</div>
</a><a href='/blog/blogo.html'><div class="row" style="color:#000000;text-decoration:none;">
<h2>Static blog template engine implementation in Go</h2>
<h3>Static blog template engine implementation in Go</h3>
<p>How has this blog been made? In this post we will see how to develop a minimalistic static blog template engine with Go.</p>

Loading…
Cancel
Save