You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
4.5 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta name="description" content="Webpage description goes here" />
  5. <meta charset="utf-8">
  6. <title>ArnauCube - Blog</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <meta name="author" content="">
  9. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
  10. <link rel="stylesheet" href="css/style.css">
  11. <!-- highlightjs -->
  12. <!-- <link rel="stylesheet" href="js/highlightjs/atom-one-dark.css"> -->
  13. <link rel="stylesheet" href="js/highlightjs/gruvbox-dark.css">
  14. <script src="js/highlightjs/highlight.pack.js"></script>
  15. <!-- katex -->
  16. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.13.11/dist/katex.min.css" integrity="sha384-Um5gpz1odJg5Z4HAmzPtgZKdTBHZdw8S29IecapCSB31ligYPhHQZMIlWLYQGVoc" crossorigin="anonymous">
  17. </head>
  18. <body>
  19. <!-- o_gradient_background" -->
  20. <nav id="mainNav" class="navbar navbar-default navbar-fixed-top"
  21. style="height:50px;font-size:130%;">
  22. <div class="container">
  23. <a href="/blog" style="color:#000;">Blog index</a>
  24. <a href="/" style="color:#000;float:right;">arnaucube.com</a>
  25. </div>
  26. </nav>
  27. <div class="o_gradient_background" style="height:5px;"></div>
  28. <div class="container" style="margin-top:80px;max-width:800px;">
  29. <a href='/blog/coffeeminer-hacking-wifi-cryptocurrency-miner.html'><div class="row" style="color:#000000;text-decoration:none;">
  30. <h2>CoffeeMiner: Hacking WiFi to inject cryptocurrency miner to HTML requests</h2>
  31. <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>
  32. <p><em>2018-01-04</em></p>
  33. <hr>
  34. </div>
  35. </a><a href='/blog/flock-botnet.html'><div class="row" style="color:#000000;text-decoration:none;">
  36. <h2>Auto generated tweets from Markov chains</h2>
  37. <p>Developing a twitter botnet with autonomous bots replying tweets with text generated based on probabilities in Markov chains</p>
  38. <p><em>2017-12-29</em></p>
  39. <hr>
  40. </div>
  41. </a><a href='/blog/blogo.html'><div class="row" style="color:#000000;text-decoration:none;">
  42. <h2>Static blog template engine implementation in Go</h2>
  43. <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>
  44. <p><em>2017-12-26</em></p>
  45. <hr>
  46. </div>
  47. </a>
  48. </div>
  49. <footer style="text-align:center; margin-top:100px;margin-bottom:50px;">
  50. <div class="container">
  51. <div class="row">
  52. <ul class="list-inline">
  53. <li><a href="https://twitter.com/arnaucube"
  54. style="color:gray;text-decoration:none;"
  55. target="_blank">twitter.com/arnaucube</a>
  56. </li>
  57. <li><a href="https://github.com/arnaucube"
  58. style="color:gray;text-decoration:none;"
  59. target="_blank">github.com/arnaucube</a>
  60. </li>
  61. </ul>
  62. </div>
  63. <div class="row" style="display:inline-block;">
  64. Blog made with <a href="http://github.com/arnaucube/blogo/"
  65. target="_blank" style="color: gray;text-decoration:none;">Blogo</a>
  66. </div>
  67. </div>
  68. </footer>
  69. <script>
  70. </script>
  71. <script src="js/external-links.js"></script>
  72. <script>hljs.initHighlightingOnLoad();</script>
  73. <script defer src="https://cdn.jsdelivr.net/npm/katex@0.13.11/dist/katex.min.js" integrity="sha384-YNHdsYkH6gMx9y3mRkmcJ2mFUjTd0qNQQvY9VYZgQd7DcN7env35GzlmFaZ23JGp" crossorigin="anonymous"></script>
  74. <script defer src="https://cdn.jsdelivr.net/npm/katex@0.13.11/dist/contrib/auto-render.min.js" integrity="sha384-vZTG03m+2yp6N6BNi5iM4rW4oIwk5DfcNdFfxkk9ZWpDriOkXX8voJBFrAO7MpVl" crossorigin="anonymous"></script>
  75. <script>
  76. document.addEventListener("DOMContentLoaded", function() {
  77. renderMathInElement(document.body, {
  78. displayMode: false,
  79. // customised options
  80. // • auto-render specific keys, e.g.:
  81. delimiters: [
  82. {left: '$$', right: '$$', display: true},
  83. {left: '$', right: '$', display: false},
  84. ],
  85. // • rendering keys, e.g.:
  86. throwOnError : true
  87. });
  88. });
  89. </script>
  90. </body>
  91. </html>