Skip to content
View cicero343's full-sized avatar

Block or report cicero343

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
cicero343/README.md

Welcome ! ๐Ÿ‘‹

cicero343's GitHub stats

๐Ÿ”— Links

Github Pages LinkedIn

Pinned Loading

  1. SerenitySkies SerenitySkies Public

    2D Java Game (based off RyiSnow's "Blue Boy Adventure")

  2. PopupWindowsAPI PopupWindowsAPI Public

    A Windows API popup C program, licensed under the MIT License.

    C

  3. CyberSecBookmarks CyberSecBookmarks Public

    Web browser bookmarks containing useful Cyber Security tools/services

    HTML

  4. Get Session Key for encrypted traffi... Get Session Key for encrypted traffic in PCAP (Interactive)
    1
    #!/usr/bin/env python3
    2
    
                  
    3
    """
    4
    This is a Python3 improved/interactive version of the script made by khr0x40sh for decrypting encrypted session keys in a PCAP file to view encrypted traffic.  
    5
  5. Export CSV file of all assigned MS T... Export CSV file of all assigned MS Teams phone numbers
    1
    # Connect to Microsoft Teams PowerShell module
    2
    Import-Module MicrosoftTeams
    3
    
                  
    4
    # Connect to Microsoft Teams
    5
    Connect-MicrosoftTeams
  6. Print Available Disk Space (Linux) Print Available Disk Space (Linux)
    1
    #!/bin/bash
    2
    
                  
    3
    total=$(df -h /dev/sda5 --output=size | tail -1)
    4
    used=$(df -h /dev/sda5 --output=used,pcent | tail -1)
    5
    available=$(df -h /dev/sda5 --output=avail | tail -1)