Add proxy.c post

This commit is contained in:
Kevin J. 2024-08-07 00:42:14 +02:00
parent dc2b9a9e8c
commit f2767c679f
6 changed files with 56 additions and 26 deletions

View File

@ -10,6 +10,7 @@ freedom and so I primarily like to deal with free and open-source software
solutions. Many of my ideas and goals come from my love towards space. I cannot
stop dreaming about it.
VPS: [public knowledge archive](http://104.248.140.85/) | [self-hosted git](http://104.248.140.85:81/explore/repos) <br>
Contact: jerebicakevin@gmail.com <br>
YouTube: [@0xdeadbeer](https://youtube.com/@0xdeadbeer) <br>
Github: [@0xdeadbeer](https://github.com/0xdeadbeer)

31
content/posts/proxy-c.md Normal file
View File

@ -0,0 +1,31 @@
---
title: "proxy.c"
date: 2024-08-07T00:20:45+02:00
---
I am writing a HTTP/s proxy server from scratch in C. So far
I have successfully implemented basic HTTP proxying. Much work
still has to be done though. I am looking for interested folks who would
be interested in helping me and build a bond to advance this project further,
if their interest or passion is genuine and strong.
The reason for such an absurd goal is to write a new terminal
foss wanna-be BurpSuite hacking utility. One that does not impose
hard delay limits on the user's requests nor hides any functionality
behind an expensive license - like BurpSuite. I want this to be a swiss army knife
of my hacking days. Potentially helping my-future-self and, if this really succeeds,
other web security engineers as well - a dream. Thus I am looking forward to
any contacts at [jerebica dot kevin at gmail](mailto:jerebicakevin@gmail.com) from
interested candidates.
In the meantime, you can take a look at the progress or source-code
of the proxy.c at [tesseract:81/0xdeadbeer/proxy](http://104.248.140.85:81/0xdeadbeer/proxy) - my self-hosted Gitea instance
Current TODO list:
* Parse port out of Host header (default_value:80)
* Implement server message parsing
* Verify and search for memory leaks
* More testing, debugging, fixing
* Implement HTTPS with OpenSSL

View File

@ -1,19 +0,0 @@
---
title: "Types of Galaxies"
date: 2024-06-16T21:57:16+02:00
---
> SOURCE: https://openstax.org/details/books/astronomy-2e
## Spiral Galaxies
Spiral galaxies consist of:
- a bulge,
- a halo,
- spiral arms,
- a disk
## Elliptical Galaxies
## Irregular Galaxies

View File

@ -4,6 +4,8 @@ date = 2023-01-01T08:00:00-07:00
draft = false
+++
Please treat information with great care, thank you.
This is a minimalist blog. No cookies. No tracking. No bloat. Just content.
This is a minimalist old-school blog. Welcome to my corner of the Internet! A
lonely DigitalOcean droplet stranded in the midst of a chaotic network of
computers. Here I talk about myself, various projects, ideas, experience, linux,
free and open source, privacy, languages, hacking, and much more.

View File

@ -7,11 +7,6 @@ name = 'Home'
pageRef = '/'
weight = 10
[[menus.main]]
name = 'RSS'
url = '/index.xml'
weight = 20
[[menus.main]]
name = 'About'
pageRef = '/pages/about-me'
@ -22,6 +17,17 @@ name = 'Resources'
pageRef = '/pages/resources'
weight = 30
[[menus.main]]
name = 'VPS'
url = 'http://104.248.140.85/'
weight = 35
[[menus.main]]
name = 'RSS'
url = '/index.xml'
weight = 40
#[[menus.main]]
#name = 'Tags'
#pageRef = '/tags'

View File

@ -1,3 +1,12 @@
::-webkit-scrollbar {
width: 5px;
background: black;
}
::-webkit-scrollbar-thumb {
background: white;
}
* {
color: white;
}