From dba1116b69c55dcf996191ce469529aebfe5e944 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Cezar=20Mois=C3=A9s?= <86272521+cristiancmoises@users.noreply.github.com> Date: Sun, 18 Feb 2024 06:41:54 +0000 Subject: Add files via upload --- -awesome-steganography.html | 46 +++++++++++++++++++++++++++++++++++++++++++++ -brutefox.html | 43 ++++++++++++++++++++++++++++++++++++++++++ -clean-all.html | 1 + -dockervm.html | 2 ++ -gorilazadah.html | 3 +++ -openbsd-portfolio.html | 4 ++++ -servervm.html | 1 + -space-invaders.html | 4 ++++ -spoofmac.html | 2 ++ -torando.html | 13 +++++++++++++ -vnc-revolver.html | 36 +++++++++++++++++++++++++++++++++++ about.html | 1 + fasteros.html | 2 ++ index.html | 1 + projects.html | 1 + research.html | 1 + site/404.html | 1 + 17 files changed, 162 insertions(+) create mode 100644 -awesome-steganography.html create mode 100644 -brutefox.html create mode 100644 -clean-all.html create mode 100644 -dockervm.html create mode 100644 -gorilazadah.html create mode 100644 -openbsd-portfolio.html create mode 100644 -servervm.html create mode 100644 -space-invaders.html create mode 100644 -spoofmac.html create mode 100644 -torando.html create mode 100644 -vnc-revolver.html create mode 100644 about.html create mode 100644 fasteros.html create mode 100644 index.html create mode 100644 projects.html create mode 100644 research.html create mode 100644 site/404.html diff --git a/-awesome-steganography.html b/-awesome-steganography.html new file mode 100644 index 0000000..f98941c --- /dev/null +++ b/-awesome-steganography.html @@ -0,0 +1,46 @@ +🕵️ Awesome Steganography — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


🕵️ Awesome Steganography

February 16, 2024

Awesome Tools for Steganography 🕵️

Para o tutorial em português clique [aqui 🇧🇷]

Table Of Contents

Steganography?

Steganography is the art and science of writing hidden messages in such a way that no-one apart from the sender and intended recipient even realizes there is a hidden message.By contrast, cryptography obscures the meaning of a message, but it does not conceal the fact that there is a message. Today, the term steganography includes the concealment of digital information within computer files. For example, the sender might start with an ordinary-looking image file, then adjust the color of every 100th pixel to correspond to a letter in the alphabet—a change so subtle that someone who isn't actively looking for it is unlikely to notice it. +The larger the cover message is (in data content terms—number of bits) relative to the hidden message, the easier it is to hide the letter. +Stated somewhat more formally, the objective for making steganographic encoding difficult to detect is to ensure that the changes to the carrier (the original signal) due to the injection of the payload (the signal to covertly embed) are visually (and ideally, statistically) negligible; that is to say, the changes are indistinguishable from the noise floor of the carrier. +For this reason, digital pictures (which contain large amounts of data) are used to hide messages on the Internet and on other communication media. For example: a 24-bit bitmap will have 8 bits representing each of the three color values (red, green, and blue) at each pixel. If we consider just the blue there will be 28 different values of blue. The difference between 11111111 and 11111110 in the value for blue intensity is likely to be undetectable by the human eye. Therefore, the least significant bit can be used (more or less undetectably) for something else other than color information. If we do it with the green and the red as well we can get one letter of ASCII text for every three pixels.

Stegoshare:

The program uses 3 least significant bits (LSB) for red and blue channels and 2 LSB for the green channel. Using lossless compression (PNG), StegoShare provides about 40% capacity (in the 250Mb images you can hide 100Mb file). +Visually images looks that there are no any files embedded, human eye cannot detect the difference. +128-bit encryption makes detecting hidden file more difficult.

Features

Simple and easy to use +Works on any platform that runs Java

Running:

apt install wget openjdk-8-jdk openjdk-8-jre
+wget http://downloads.sourceforge.net/stegoshare/StegoShare.jar
+java -jar StegoShare.jar

On Gentoo:

emerge openjdk
+emerge jre
+wget http://downloads.sourceforge.net/stegoshare/StegoShare.jar
+java -jar StegoShare.jar

Steganoroute:

Is a tool to send steganographed text messages to another computer over the network. The receiver must make a traceroute to the sender using the mtr program (and pressing d once to switch the display mode to the continuous graph). +This tool, the sender, creates several fake hops and makes them answer the ICMP packets (or not) to write the letters one by one on the mtr client screen.

Features

It can print upper and lower-case letters.
It can print in normal or color-inverse mode.
It can loop forever.
It should work on your own localhost computer, on your LAN and over the Internet.
Is uses the Sinclair ZX Spectrum (1982) font.
You can select the TTL value on demand and therefore 'move' the text up and down the mtr graph.

Warning! _You can filter the IP address that should receive the traceroute. If you don't filter it, every traceroute coming out of the server will mysteriously add fake hops to any destination!You can feel the sensation of being MITMed by the top intelligence organizations in the world by using the conspiracy mode!

Running:

apt install git mtr python3 python-scapy
+git clone https://github.com/stratosphereips/steganoroute.git
+cd ./steganoroute
+iptables -I INPUT -p icmp --icmp-type 8 -j DROP
+python3 ./steganoroute.py -i lo -m "MATRIX has You!" -l
+mtr -t yourlocalLANip

*MTR command used to list the message

On Gentoo:

emerge mtr 
+emerge python 
+emerge scapy
+git clone https://github.com/stratosphereips/steganoroute.git
+cd ./steganoroute
+iptables -I INPUT -p icmp --icmp-type 8 -j DROP
+python3 ./steganoroute.py -i lo -m "MATRIX has You!" -l
+mtr -t yourlocalLANip

*MTR command used to list the message

Snow:

A lightweight tool that uses whitespace and tabs to hide information inside text files. Unlike other steganographic tools, snow does not rely on binary formats to encode secret data. This can be incredibly useful in cases where it is not possible to share large binary files.

Features

Produces small files +Output text can be used on any program that accepts plain text

Running:

apt install stegsnow
+stegsnow -C -m "Encrypted Message Here" -p "angrypassword" infile outfile 
+stegsnow -C -p "angrypassword" outfile

On Gentoo:

wget https://darkside.com.au/snow/snow.zip
+unzip snow.zip
+cd snow 
+make
+cp snow /bin/
+snow -C -m "Encrypted Message Here" -p "angrypassword" infile outfile
+snow -C -p "angrypassword" outfile

Steghide

+One of the most popular steganographic tools today. +It is a simple command line program that encodes text inside images. Steghide works by creating a random list of bits inside your dummy file and inserts your secret data in between those bits.

Features

Quick and easy to use
Uses checksums to verify the integrity of data

Running:

apt install steghide
+cd steghide
+steghide embed -ef topsecretfile.txt -cf photo.jpg -sf photoX.jpg
+steghide extract –sf photoX.jpg

On Gentoo:

wget https://ufpr.dl.sourceforge.net/project/steghide/steghide/0.5.1/steghide-0.5.1.zip
+cd steghide
+./configure 
+make
+make check
+make install 
+steghide embed -ef topsecretfile.txt -cf photo.jpg -sf photoX.jpg
+steghide extract –sf photoX.jpg

\ No newline at end of file diff --git a/-brutefox.html b/-brutefox.html new file mode 100644 index 0000000..d92a086 --- /dev/null +++ b/-brutefox.html @@ -0,0 +1,43 @@ +💪 Brutefox — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


💪 Brutefox

February 15, 2024

Firefox with steroids

💬 Tutorial on Youtube [here]

🇧🇷 Para o tutorial em português clique [aqui]

START FIREFOX AND DIGIT IN THE SEARCH BOX:

         about:config

*Then press enter

Paste the command and search, then change the value:

    network.http.pipelining              |True                            
+    network.http.pipelining.maxrequests  |32                  
+    network.http.proxy.pipelining        |True                      
+    network.dns.disableIPv6              |True                            
+    plugin.expose_full_path              |True                            
+    nglayout.initialpaint.delay          |0                           
+    content.notify.backoffcount          |5                           
+    ui.submenuDelay                      |0                                       
+    browser.cache.memory.capacity        |32768                     
+    layout.spellcheckDefault             |2                              
+    browser.download.animateNotifications|False              
+    security.dialog_enable_delay         |0                           
+    network.prefetch-next                |False                              
+    browser.newtabpage.activity-stream.feeds.telemetry |False 
+    browser.newtabpage.activity-stream.telemetry       |False       
+    browser.ping-centre.telemetry        |False                      
+    toolkit.telemetry.archive.enabled    |False                  
+    toolkit.telemetry.bhrPing.enabled    |False                  
+    toolkit.telemetry.enabled            |False                          
+    toolkit.telemetry.firstShutdownPing.enabled        |False        
+    toolkit.telemetry.hybridContent.enabled            |False            
+    toolkit.telemetry.newProfilePing.enabled           |False           
+    toolkit.telemetry.reportingpolicy.firstRun         |False         
+    toolkit.telemetry.shutdownPingSender.enabled       |False      
+    toolkit.telemetry.unified            |False                         
+    toolkit.telemetry.updatePing.enabled |False               
+    reader.parse-on-load.enabled         |False                       
+    reader.parse-on-load.force-enabled   |False                 
+    browser.pocket.enabled               |False                             
+    loop.enabled                         |False                                       

INSTALL SOME ADDONS TO INCREASE THE SECURITY:

+[Ublock] +
+[PrivacyBadger] +
+[CanvasBlocker] +
+[BrowSec]


FOR PARANOIDS:

+[NOScript] +
+[LibreJS]


BONUS - A TRUE DARK BROWSER

+[AmoledTheme] +
+[DarkBG]


\ No newline at end of file diff --git a/-clean-all.html b/-clean-all.html new file mode 100644 index 0000000..b7dc8b4 --- /dev/null +++ b/-clean-all.html @@ -0,0 +1 @@ +🧹 Clean All — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


🧹 Clean All

February 10, 2024

Secure delete trash, temp and free space

DOWNLOAD

[clearner.sh]

[cleanall.sh]

[paranoid.sh]

<> HOW IT WORKS: </>

<> Versions: </>


If you want run it in reboot:

Have a nice day! :)

\ No newline at end of file diff --git a/-dockervm.html b/-dockervm.html new file mode 100644 index 0000000..ca1300e --- /dev/null +++ b/-dockervm.html @@ -0,0 +1,2 @@ +📦 DockerVM — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


📦 DockerVM

February 18, 2024

Use docker like Qemu/VmWare/Virtualbox

[Exherbo]

[Fedora]

[Kali]

[Void]

ACCESS THE SYSTEM IN THE CONTAINER

   docker run -it IMAGE_ID_HERE /bin/bash

START ALL STOPPED CONTAINERS

   docker start $(docker ps -a -q --filter "status=exited")

RUN THE LAST STOPPED CONTAINER:

   docker start -a -i 'docker ps -q -l'

LIST ALL IMAGES

   docker images

LIST ALL CONTAINERS

   docker ps -a

RE-ACCESS THE SYSTEMS

   docker exec -it CONTAINER_ID_HERE /bin/bash

NOVNC

GRAPHICAL INTERFACE

apt install xfce-desktop xorg -y

CONFIGURE A PASSWORD FOR ROOT ON KALI

passwd

FIREWALL - HOST CONFIG

iptables -A INPUT -i docker0 -j ACCEPT

CONFIG FOR KALI LINUX

apt update && apt upgrade && apt install novnc x11vnc tigervnc-standalone-server dbus-x11 python-py python3-pip -y

NUMPY INSTALL

user > pip install numpy
+user > pip3 install numpy

START DBUS

dbus-launch

START VNCSERVER

vncserver

START NOVNC

/usr/share/novnc/utils/novnc_proxy --listen 8081 --vnc localhost:5900

ACESS VIA BROWSER

CONTAINER_IP:8081/vnc.html

FIX SOME HOSTNAME BUGS

echo $(hostname -I | cut -d\ -f1) $(hostname) | sudo tee -a /etc/hosts

\ No newline at end of file diff --git a/-gorilazadah.html b/-gorilazadah.html new file mode 100644 index 0000000..3afd70d --- /dev/null +++ b/-gorilazadah.html @@ -0,0 +1,3 @@ +🦍 Gorilazadah — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


🦍 Gorilazadah

February 18, 2024

Awesome Script for Clean and Update your Windows

Para a versão em português clique [🇧🇷]


You dont have time for checking windows updates and softwares every time?

This script is for you!

Download

[Gorilazada]

[Clean]

Usage:

In the windows gui perform the following steps:

1.) Open the Local Group Policy Editor by hitting "Win + R" and typing: gpedit.msc followed by Ctrl + Shift + Enter.

2.) Navigate to Computer **Configuration\Windows Settings\Scripts (Startup/Shutdown).

3.) In the results pane, double-click Shutdown.

4.) Select the powershell tab

5.) In the Shutdown Properties dialog box, click Add.

6.) In the Script Name box, type the path to the script, or click Browse to search gorilazadah.ps1 in the Netlogon shared folder on the domain controller.

7.) Now add the clean.bat into scripts (Configuration\Windows Settings\Scripts)(double-click Shutdown).

All cache are cleaned by the clean.bat (Include all temp from Microsoft Teams) +Now all an administrator has to do is reboot the computer to perform windows updates smoothly. +The same steps can be performed in GPO to acomplish the same thing on multiple Windows machines at the same time. #profit

\ No newline at end of file diff --git a/-openbsd-portfolio.html b/-openbsd-portfolio.html new file mode 100644 index 0000000..92260c8 --- /dev/null +++ b/-openbsd-portfolio.html @@ -0,0 +1,4 @@ +🐡 OpenBsd Portfolio — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


🐡 OpenBsd Portfolio

February 15, 2024

My OpenBsd Portfolio

Creation

I needed a cool portfolio... so i created [this]. +Well. My hacking spirit ever want learn more; then i use threejs and reactjs to create a interative portfolio (check [here]). +But it's not sufficient for me. +After a few months of hard work i finished one of my best creations: A interactive [OpenBSD portfolio] with another two websites(listed above) inside.

Screenshots

\ No newline at end of file diff --git a/-servervm.html b/-servervm.html new file mode 100644 index 0000000..0b0787c --- /dev/null +++ b/-servervm.html @@ -0,0 +1 @@ +🖥️ ServerVM — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


🖥️ ServerVM

February 16, 2024

Graphical Interface for Servers with NoVnc

apt install novnc psmisc x11vnc tigervnc-standalone-server xterm terminator wget dbus-x11 python-py python3-pip xfce4 xorg -y

StartVnc Server

 tigervncserver -geometry 1366x768 -xstartup /usr/bin/terminator

Start NOVNC

/usr/share/novnc/utils/launch.sh --listen 8080 --vnc localhost:5901

Access Your Server:

 http://SERVERIP:8080/vnc.html

Kill the connection:

fuser -k 8080/tcp
\ No newline at end of file diff --git a/-space-invaders.html b/-space-invaders.html new file mode 100644 index 0000000..71d1e7b --- /dev/null +++ b/-space-invaders.html @@ -0,0 +1,4 @@ +👾 Space Invaders — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


👾 Space Invaders

February 15, 2024

Amazing tricks for hacking [SSH]


POWER UP YOUR SEGFAULT ACCESS WITH SOME TRICKS! LET'S HACK!

Automation with SSH for Hacking

First steps:

Debian: | +apt update && apt upgrade && apt install sshpass pssh torsocks -y
Fedora:
dnf update && dnf upgrade && dnf install sshpass pssh tor torsocks -y
Gentoo:
emerge sshpass pssh tor torsocks

START TOR!

SYSTEMD USERS
systemctl enable tor  
+systemctl start tor   
OPENRC USERS
rc-service tor enable 
+rc-service tor start  

Are you prepared? OK... start with this:

      torify sshpass -p "segfault" pssh -A -i -H "root@lsd.segfault.net:22" uname -a  

[Tutorial YouTube]

Do you want go deep? OK...

DEEEEEEEEP TUTORIAL...

[Tutorial YouTube]

Go to Segfault interactive shell [here]

When your machine starts, do this:
ssh@lsd.segfault.net       
Before access complete do this:
ssh@adm.segfault.net         

And repeat to infinity!

Knowledge is power. Use it.

\ No newline at end of file diff --git a/-spoofmac.html b/-spoofmac.html new file mode 100644 index 0000000..5de1d34 --- /dev/null +++ b/-spoofmac.html @@ -0,0 +1,2 @@ +👻 SpoofMac — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


👻 SpoofMac

February 11, 2024

Change mac address on reboot

Download

[SpoofMac]

[eth0] +[enp6s0]

<> SPOOF YOUR MAC ADDRESS: </>

Have a nice day! :)

\ No newline at end of file diff --git a/-torando.html b/-torando.html new file mode 100644 index 0000000..dbaff13 --- /dev/null +++ b/-torando.html @@ -0,0 +1,13 @@ +🛡️ Torando — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


🛡️ Torando

February 17, 2024

Tor VPN on whole system

🇧🇷 Para o tutorial em português clique [aqui]


Download

[Torando]

[Toroff]

Do you need the tor package to run this. Instal tor first!

DEBIAN:

      apt update && apt upgrade && apt install tor torsocks -y

GENTOO:

      emerge tor torsocks

ARCH:

     pacman tor torsocks -Syu

OPENSUSE:

     zypper install tor torsocks -y

FIRST STEP - CHANGE THE CONFIG

Clone the repo and open the torando.sh and change USERAQUI for your username. +Do the same on toroff.sh

git clone https://github.com/cristiancmoises/torando
+cd torando
+chmod +x *
+nano torando.sh

EDIT TORRC

nano   /etc/tor/torrc

Then paste in the end:

VirtualAddrNetwork 10.192.0.0/10
+AutomapHostsOnResolve 1
+TransPort 9040
+DNSPort 53

NOW EDIT THE RESOLV.CONF

nano /etc/resolv.conf

FOR SECURITY

chattr +i /etc/resolv.conf

THEN REMOVE ALL AND PASTE

nameserver 127.0.0.1 

FIREFOX CONFIG - NO DNS LEAK

Go to the firefox and digit about:config then press enter.

       about:config

OK, Now paste the command and search, then change the value:

network.proxy.socks_remote_dns       |True     
+browser.safebrowsing.enabled         |True                     
+browser.safebrowsing.malware.enabled |False             

NOW YOU CAN TURN ON THE TORANDO.SH!

  cd torando
+ ./torando.sh

FOR DISABLE

 cd torando
+./toroff.sh

BONUS! EDIT YOUR BASHRC/FISH OR WHATEVER...

 nano .bashrc

INCLUDE:

 alias torando="./torando.sh"
+ alias toroff="./offtor.sh"

THAT'S ALL!

\ No newline at end of file diff --git a/-vnc-revolver.html b/-vnc-revolver.html new file mode 100644 index 0000000..d9b8fd8 --- /dev/null +++ b/-vnc-revolver.html @@ -0,0 +1,36 @@ +💥 VNC Revolver — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


💥 VNC Revolver

February 14, 2024

Search for open VNC servers around the world

DOWNLOAD

[vncrevolver]

Table Of Contents

Required:

 pip install pydantic 
+ pip install asyncvnc 
+ pip install aiohttp

Install:

git clone https://github.com/cristiancmoises/vncrevolver
+cd vncrevolver

Features

| Some Features | +|------------------------------------------------------------------------------------| +| 🌎 Search for many open Vnc Servers around the world | +| 📍 Filter by country | +| 🔢 List more than one | +| 🖥️ List by Client name | +| ✅ Checks them for vulnerabilities by rebooting the machine via Ctrl+ALT+DEL, obtaining root access through the operating system bootloader easyly. |

Commands

BASIC:

python -m vncrevolver

DEEP SEARCH:

python -m vncrevolver --clientname ubuntu --count 10

CTRL + ALT + DEL | CHECK

python -m vncrevolver --clientname ubuntu --count 10 --check_crt_alt_del

CHECK A SPECIFIC ADDRESS:

python -m vncrevolver --check_crt_alt_del 123.12.1.23:5901

START ME UP!

$ python -m vncrevolver --help
+
+usage: vncrevolver [-h] [--clientname CLIENTNAME] [--country COUNTRY] [--asn ASN]  [--count COUNT] [--check_crt_alt_del [CHECK_CRT_ALT_DEL]] [--show_failed] [--screen_delay SCREEN_DELAY]
+
+optional arguments:
+-h, --help            show this help message and exit
+--clientname CLIENTNAME
+                    Filter by client name, note that it is case-sensitive!
+--country COUNTRY     Filter by ISO 3166-1 alpha-2 country code
+--asn ASN             Filter by ASN
+--count COUNT         Number of VNCs to find
+--check_crt_alt_del [CHECK_CRT_ALT_DEL]
+                    If you specify this parameter without a value, only those VNCs from the search that pass the ctrl_alt_del check will be returned. If a value is passed, it must be a VNC
+                    address that will be checked against ctrl_alt_del.
+--show_failed         Return VNCs that failed the ctrl_alt_del check
+--screen_delay SCREEN_DELAY
+                    Delay between taking two screenshots in milliseconds

Use filters:

from typing import List
+from vncrevolver.search import VNC, search_filter
+
+hosts: List[VNC] = await search_filter(clientname='ubuntu')
+for vnc in hosts:
+print(vnc.ip, vnc,port)

Random Search

from vncrevolver.search import VNC, search_random
+vnc: VNC = await search_random()
+print(vnc.ip, vnc.port)

Ctrl + ALT + DEL - CHECK UP!

from vncrevolver.search import VNC, search_random
+from vncrevolver.vnc import check_crt_alt_del
+vnc: VNC = await search_random()
+print(await check_crt_alt_del(vnc.ip, vnc.port))

\ No newline at end of file diff --git a/about.html b/about.html new file mode 100644 index 0000000..ec755c7 --- /dev/null +++ b/about.html @@ -0,0 +1 @@ +About — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


About

This is the personal website of Cristian Cezar Moisés. I am a student. (Pronouns: he, him, his).

Learning about cybersec,infosec and hacking.Information Security Graduate[Ftec]. My research focused on the Linux Servers Security.I'm a free software enthusiast.


I love code and unify projects like threejs + react Check my awesome interactive portfolio [here]. Outside of work, I'm a computerphile — I enjoy learning about and using programming languages .This site was written in the LISP dialect Scheme (GNU Guile, version 3.0.9) and built with the Haunt library (version 0.2.6) on Sun 18 Feb 2024 03:23:30 AM -03. The source code can be found on [GitHub]. Check my YouTube channel [SecurityOps].

\ No newline at end of file diff --git a/fasteros.html b/fasteros.html new file mode 100644 index 0000000..292bdd8 --- /dev/null +++ b/fasteros.html @@ -0,0 +1,2 @@ +Faster⚡OS — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


Faster⚡OS

February 13, 2024

My Web Operating System

Free.

A web operating system for you!

Easy.

Just click [here] and visit now.

For the android app click[here]

Screenshots

Description

All files are running on your local computer. Convert, play music, and more with this. +FasterOS is a web operating system created for help users in daily tasks and for help security enthusiasts and students.

🖥️ Run linux systems

⤴️ Upload files

📥 Download files

🌐 Browse in built-in browser

🖼️ Convert images: bmp,gif,png,jpeg,jpg,psd,svg,tiff

🎵 Convert Audio: aac,mp3,ogg,wav

💼 Convert Sheets: xlsx,csv,numbers,ods,xls

🗜️ Compress and extract files

🧠 Learn about: Linux, Windows, Hacking, Data Security and Forensics

💀 The system has a list of tutorials and hacking tools

🔎 Malware list for analysis

🎮 Games and Emulators

🛡️ Security:

👉 You can turn off your cell phone so that your settings remain saved in the app

🔒 Privacy:

👉 All data is cleared on clicking shutdown

GOALS:

🧭 Study assistant

⏱️ Speed up the production process

🏆 Help the community

🇧🇷 Official Language

\ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..1ea9e40 --- /dev/null +++ b/index.html @@ -0,0 +1 @@ +Home — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


\ No newline at end of file diff --git a/projects.html b/projects.html new file mode 100644 index 0000000..bd35477 --- /dev/null +++ b/projects.html @@ -0,0 +1 @@ +Recent Posts — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


Recent Posts

🦍 Gorilazadah

February 18, 2024

Awesome Script for Clean and Update your Windows

[read more...]

-->--<--

📦 DockerVM

February 18, 2024

Use docker like Qemu/VmWare/Virtualbox

[read more...]

-->--<--

🛡️ Torando

February 17, 2024

Tor VPN on whole system

[read more...]

-->--<--

🖥️ ServerVM

February 16, 2024

Graphical Interface for Servers with NoVnc

[read more...]

-->--<--

🕵️ Awesome Steganography

February 16, 2024

Awesome Tools for Steganography 🕵️

[read more...]

-->--<--

💪 Brutefox

February 15, 2024

Firefox with steroids

[read more...]

-->--<--

👾 Space Invaders

February 15, 2024

Amazing tricks for hacking [SSH]

[read more...]

-->--<--

🐡 OpenBsd Portfolio

February 15, 2024

My OpenBsd Portfolio

[read more...]

-->--<--

💥 VNC Revolver

February 14, 2024

Search for open VNC servers around the world

[read more...]

-->--<--

Faster⚡OS

February 13, 2024

My Web Operating System

[read more...]

-->--<--

👻 SpoofMac

February 11, 2024

Change mac address on reboot

[read more...]

-->--<--

🧹 Clean All

February 10, 2024

Secure delete trash, temp and free space

[read more...]

-->--<--

\ No newline at end of file diff --git a/research.html b/research.html new file mode 100644 index 0000000..734202f --- /dev/null +++ b/research.html @@ -0,0 +1 @@ +Published Work — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


Published Work

\ No newline at end of file diff --git a/site/404.html b/site/404.html new file mode 100644 index 0000000..2558bd6 --- /dev/null +++ b/site/404.html @@ -0,0 +1 @@ +404 — C.C.M. Homepage

+>---------------------------<+

[About]--[Research]--[Projects]

+>---------------------------<+


404 Page Not Found

Unfortunately the page you've tried to access doesn't exist!


Return [Home]?

\ No newline at end of file -- cgit v1.2.3