diff --git a/README.md b/README.md
deleted file mode 100644
index 4c2fac074ba..00000000000
--- a/README.md
+++ /dev/null
@@ -1,116 +0,0 @@
-# The Hacker theme
-
-[![.github/workflows/ci.yaml](https://github.com/pages-themes/hacker/actions/workflows/ci.yaml/badge.svg)](https://github.com/pages-themes/hacker/actions/workflows/ci.yaml) [![Gem Version](https://badge.fury.io/rb/jekyll-theme-hacker.svg)](https://badge.fury.io/rb/jekyll-theme-hacker)
-
-*Hacker is a Jekyll theme for GitHub Pages. You can [preview the theme to see what it looks like](http://pages-themes.github.io/hacker), or even [use it today](#usage).*
-
-![Thumbnail of Hacker](thumbnail.png)
-
-## Usage
-
-To use the Hacker theme:
-
-1. Add the following to your site's `_config.yml`:
-
- ```yml
- remote_theme: pages-themes/hacker@v0.2.0
- plugins:
- - jekyll-remote-theme # add this line to the plugins list if you already have one
- ```
-
-2. Optionally, if you'd like to preview your site on your computer, add the following to your site's `Gemfile`:
-
- ```ruby
- gem "github-pages", group: :jekyll_plugins
- ```
-
-## Customizing
-
-### Configuration variables
-
-Hacker will respect the following variables, if set in your site's `_config.yml`:
-
-```yml
-title: [The title of your site]
-description: [A short description of your site's purpose]
-```
-
-Additionally, you may choose to set the following optional variables:
-
-```yml
-show_downloads: ["true" or "false" (unquoted) to indicate whether to provide a download URL]
-google_analytics: [Your Google Analytics tracking ID]
-```
-
-### Stylesheet
-
-If you'd like to add your own custom styles:
-
-1. Create a file called `/assets/css/style.scss` in your site
-2. Add the following content to the top of the file, exactly as shown:
- ```scss
- ---
- ---
-
- @import "{{ site.theme }}";
- ```
-3. Add any custom CSS (or Sass, including imports) you'd like immediately after the `@import` line
-
-*Note: If you'd like to change the theme's Sass variables, you must set new values before the `@import` line in your stylesheet.*
-
-### Layouts
-
-If you'd like to change the theme's HTML layout:
-
-1. For some changes such as a custom `favicon`, you can add custom files in your local `_includes` folder. The files [provided with the theme](https://github.com/pages-themes/hacker/tree/master/_includes) provide a starting point and are included by the [original layout template](https://github.com/pages-themes/hacker/blob/master/_layouts/default.html).
-2. For more extensive changes, [copy the original template](https://github.com/pages-themes/hacker/blob/master/_layouts/default.html) from the theme's repository (*Pro-tip: click "raw" to make copying easier*)
-3. Create a file called `/_layouts/default.html` in your site
-4. Paste the default layout content copied in the first step
-5. Customize the layout as you'd like
-
-### Customizing Google Analytics code
-
-Google has released several iterations to their Google Analytics code over the years since this theme was first created. If you would like to take advantage of the latest code, paste it into `_includes/head-custom-google-analytics.html` in your Jekyll site.
-
-### Overriding GitHub-generated URLs
-
-Templates often rely on URLs supplied by GitHub such as links to your repository or links to download your project. If you'd like to override one or more default URLs:
-
-1. Look at [the template source](https://github.com/pages-themes/hacker/blob/master/_layouts/default.html) to determine the name of the variable. It will be in the form of `{{ site.github.zip_url }}`.
-2. Specify the URL that you'd like the template to use in your site's `_config.yml`. For example, if the variable was `site.github.url`, you'd add the following:
- ```yml
- github:
- zip_url: http://example.com/download.zip
- another_url: another value
- ```
-3. When your site is built, Jekyll will use the URL you specified, rather than the default one provided by GitHub.
-
-*Note: You must remove the `site.` prefix, and each variable name (after the `github.`) should be indent with two space below `github:`.*
-
-For more information, see [the Jekyll variables documentation](https://jekyllrb.com/docs/variables/).
-
-## Roadmap
-
-See the [open issues](https://github.com/pages-themes/hacker/issues) for a list of proposed features (and known issues).
-
-## Project philosophy
-
-The Hacker theme is intended to make it quick and easy for GitHub Pages users to create their first (or 100th) website. The theme should meet the vast majority of users' needs out of the box, erring on the side of simplicity rather than flexibility, and provide users the opportunity to opt-in to additional complexity if they have specific needs or wish to further customize their experience (such as adding custom CSS or modifying the default layout). It should also look great, but that goes without saying.
-
-## Contributing
-
-Interested in contributing to Hacker? We'd love your help. Hacker is an open source project, built one contribution at a time by users like you. See [the CONTRIBUTING file](docs/CONTRIBUTING.md) for instructions on how to contribute.
-
-### Previewing the theme locally
-
-If you'd like to preview the theme locally (for example, in the process of proposing a change):
-
-1. Clone down the theme's repository (`git clone https://github.com/pages-themes/hacker`)
-2. `cd` into the theme's directory
-3. Run `script/bootstrap` to install the necessary dependencies
-4. Run `bundle exec jekyll serve` to start the preview server
-5. Visit [`localhost:4000`](http://localhost:4000) in your browser to preview the theme
-
-### Running tests
-
-The theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run `script/cibuild`. You'll need to run `script/bootstrap` once before the test script will work.
diff --git a/_config.yml b/_config.yml
index c5cf3fdc785..be425cae545 100644
--- a/_config.yml
+++ b/_config.yml
@@ -1,5 +1,4 @@
-title: Hacker theme
-description: Hacker is a theme for GitHub Pages.
-show_downloads: true
-google_analytics:
-theme: jekyll-theme-hacker
\ No newline at end of file
+title: Maldev-Blog
+description: The blog of a friendly hacker.
+show_downloads: true
+theme: jekyll-theme-hacker
diff --git a/_layouts/default.html b/_layouts/default.html
index 1c8c883a480..b90b34d5e32 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,38 +1,87 @@
-
-
-
-
-
-
- {% include head-custom.html %}
-
-{% seo %}
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/_sass/jekyll-theme-hacker.scss b/_sass/jekyll-theme-hacker.scss
index b3123a11ce3..8ce784c6d19 100644
--- a/_sass/jekyll-theme-hacker.scss
+++ b/_sass/jekyll-theme-hacker.scss
@@ -7,21 +7,23 @@ $header: $conifer !default;
$blockquote-color: $silver-chalice !default;
$blockquote-border: $dove-grey !default;
$container-max-width: 1000px;
+$max-width: 4000px;
@mixin media-max-width($max-width) {
@media (max-width: $max-width) {
- @content;
+ @content;
}
}
body {
margin: 0;
- padding: 0;
+ padding: 10px;
background: $body-background url("../images/bkg.png") 0 0;
color: $body-foreground;
font-size: 16px;
line-height: 1.5;
- font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal,
+ monospace;
}
/* General & 'Reset' Stuff */
@@ -37,12 +39,17 @@ section {
margin: 0 0 20px 0;
}
-h1, h2, h3, h4, h5, h6 {
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
margin: 0 0 20px;
}
li {
- line-height: 1.4 ;
+ line-height: 1.4;
}
/* Header,
@@ -62,13 +69,15 @@ header {
header h1 {
font-size: 30px;
line-height: 1.5;
- margin: 0 0 0 -40px;
+ margin: 5px auto;
font-weight: bold;
- font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
- color: $conifer;//$header;
- text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
- 0 0 5px rgba(181, 232, 83, 0.1),
- 0 0 10px rgba(181, 232, 83, 0.1);
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal,
+ monospace;
+ color: $conifer; //$header;
+ text-shadow:
+ 0 1px 1px rgba(0, 0, 0, 0.1),
+ 0 0 5px rgba(181, 232, 83, 0.1),
+ 0 0 10px rgba(181, 232, 83, 0.1);
letter-spacing: -1px;
-webkit-font-smoothing: antialiased;
@include media-max-width($container-max-width) {
@@ -76,7 +85,6 @@ header h1 {
}
}
-
header h1:before {
content: "./ ";
font-size: 24px;
@@ -85,7 +93,7 @@ header h1:before {
header h2 {
font-size: 18px;
font-weight: 300;
- color: #666;
+ color: #fff;
}
#downloads .btn {
@@ -100,19 +108,27 @@ header h2 {
#main_content {
width: 100%;
-webkit-font-smoothing: antialiased;
+ color: white;
}
section img {
- max-width: 100%
+ max-width: 100%;
}
-h1, h2, h3, h4, h5, h6 {
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
font-weight: normal;
- font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
+ font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal,
+ monospace;
color: $header;
letter-spacing: -0.03em;
- text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
- 0 0 5px rgba(181, 232, 83, 0.1),
- 0 0 10px rgba(181, 232, 83, 0.1);
+ text-shadow:
+ 0 1px 1px rgba(0, 0, 0, 0.1),
+ 0 0 5px rgba(181, 232, 83, 0.1),
+ 0 0 10px rgba(181, 232, 83, 0.1);
}
#main_content h1 {
@@ -140,7 +156,7 @@ h1, h2, h3, h4, h5, h6 {
#main_content h6 {
font-size: 12px;
text-transform: uppercase;
- color: #999;
+ color: #fff;
margin: 0 0 5px 0;
}
@@ -150,7 +166,7 @@ dt {
}
ul li {
- list-style-image:url('../images/bullet.png');
+ list-style-image: url("../images/bullet.png");
}
blockquote {
@@ -172,7 +188,7 @@ pre {
}
code.highlighter-rouge {
- background: rgba(0,0,0,0.9);
+ background: rgba(0, 0, 0, 0.9);
border: 1px solid rgba(255, 255, 255, 0.15);
padding: 0px 3px;
margin: 0px -3px;
@@ -207,7 +223,13 @@ hr {
.btn {
display: inline-block;
- background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.3), rgba(35, 35, 35, 0.3) 50%, rgba(10, 10, 10, 0.3) 50%, rgba(0, 0, 0, 0.3));
+ background: -webkit-linear-gradient(
+ top,
+ rgba(40, 40, 40, 0.3),
+ rgba(35, 35, 35, 0.3) 50%,
+ rgba(10, 10, 10, 0.3) 50%,
+ rgba(0, 0, 0, 0.3)
+ );
padding: 8px 18px;
border-radius: 50px;
border: 2px solid rgba(0, 0, 0, 0.7);
@@ -223,7 +245,13 @@ hr {
}
.btn:hover {
- background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.6), rgba(35, 35, 35, 0.6) 50%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 0, 0, 0.8));
+ background: -webkit-linear-gradient(
+ top,
+ rgba(40, 40, 40, 0.6),
+ rgba(35, 35, 35, 0.6) 50%,
+ rgba(10, 10, 10, 0.8) 50%,
+ rgba(0, 0, 0, 0.8)
+ );
}
.btn .icon {
@@ -250,17 +278,18 @@ a {
/* Clearfix */
-.cf:before, .cf:after {
- content:"";
- display:table;
+.cf:before,
+.cf:after {
+ content: "";
+ display: table;
}
.cf:after {
- clear:both;
+ clear: both;
}
.cf {
- zoom:1;
+ zoom: 1;
}
#a-title {
diff --git a/another-page.md b/another-page.md
deleted file mode 100644
index 03ce0c23db4..00000000000
--- a/another-page.md
+++ /dev/null
@@ -1,9 +0,0 @@
----
-layout: default
----
-
-## Welcome to another page
-
-_yay_
-
-[back](./)
diff --git a/assets/images/catpuccino.png b/assets/images/catpuccino.png
new file mode 100644
index 00000000000..a06474c2205
Binary files /dev/null and b/assets/images/catpuccino.png differ
diff --git a/docs/FAQ.md b/docs/FAQ.md
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/index.md b/index.md
index e039c9ac641..25ec7be6cb2 100644
--- a/index.md
+++ b/index.md
@@ -2,122 +2,21 @@
layout: default
---
-Text can be **bold**, _italic_, ~~strikethrough~~ or `keyword`.
-[Link to another page](./another-page.html).
-There should be whitespace between paragraphs.
-There should be whitespace between paragraphs. We recommend including a README, or a file with information about your project.
+# Whoami
+Welcome to the blog of your friendly neighbourhood hacker.
-# Header 1
+I'm Schizzy, a mid 20 something tech enthusiast and professional button pusher. I've been poking around with computers ever since my first laptop, and I love to deep dive into topics such as Reverse Engineering, Malware Analysis, Capture the Flags, and other nerdy things! It is my hope that you learn something from me even if that's a new way to fail at something. I will be documenting my progress through CTFs, code projects, and whatever else interests me.
-This is a normal paragraph following a header. GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere.
+## What's next?
+* HackTheBox Writeups
+* Describing the method to my madness
+* Rust projects (Some already completed ones are things like a port scanner)
+* C++ Projects (If you have suggestions, please lmk!)
+* Having fun with Lua - a really nice scripting language
+* Exploit development and mitigation techniques
+* More to come.
-## Header 2
-
-> This is a blockquote following a header.
->
-> When something is important enough, you do it even if the odds are not in your favor.
-
-### Header 3
-
-```js
-// Javascript code with syntax highlighting.
-var fun = function lang(l) {
- dateformat.i18n = require('./lang/' + l)
- return true;
-}
-```
-
-```ruby
-# Ruby code with syntax highlighting
-GitHubPages::Dependencies.gems.each do |gem, version|
- s.add_dependency(gem, "= #{version}")
-end
-```
-
-#### Header 4
-
-* This is an unordered list following a header.
-* This is an unordered list following a header.
-* This is an unordered list following a header.
-
-##### Header 5
-
-1. This is an ordered list following a header.
-2. This is an ordered list following a header.
-3. This is an ordered list following a header.
-
-###### Header 6
-
-| head1 | head two | three |
-|:-------------|:------------------|:------|
-| ok | good swedish fish | nice |
-| out of stock | good and plenty | nice |
-| ok | good `oreos` | hmm |
-| ok | good `zoute` drop | yumm |
-
-### There's a horizontal rule below this.
-
-* * *
-
-### Here is an unordered list:
-
-* Item foo
-* Item bar
-* Item baz
-* Item zip
-
-### And an ordered list:
-
-1. Item one
-1. Item two
-1. Item three
-1. Item four
-
-### And a nested list:
-
-- level 1 item
- - level 2 item
- - level 2 item
- - level 3 item
- - level 3 item
-- level 1 item
- - level 2 item
- - level 2 item
- - level 2 item
-- level 1 item
- - level 2 item
- - level 2 item
-- level 1 item
-
-### Small image
-
-![Octocat](https://github.githubassets.com/images/icons/emoji/octocat.png)
-
-### Large image
-
-![Branching](https://guides.github.com/activities/hello-world/branching.png)
-
-
-### Definition lists can be used with HTML syntax.
-
-
-
Name
-
Godzilla
-
Born
-
1952
-
Birthplace
-
Japan
-
Color
-
Green
-
-
-```
-Long, single-line code blocks should not wrap. They should horizontally scroll if they are too long. This line should be long enough to demonstrate this.
-```
-
-```
-The final element.
-```
+Thank you for reading!
diff --git a/.rubocop.yml b/script/.rubocop.yml
similarity index 100%
rename from .rubocop.yml
rename to script/.rubocop.yml
diff --git a/thumbnail.png b/thumbnail.png
deleted file mode 100644
index 01bd0a8ee3c..00000000000
Binary files a/thumbnail.png and /dev/null differ