본문 바로가기

분류 전체보기

(1786)
판다의 고기는 원래 맛있다 from argparse import ArgumentParserfrom exploit import ChamiloBigUploadExploitfrom os import systemdef check_extension(filename: str, extension: str) -> str:    if not filename.endswith(f'.{extension}'):        return f'{filename}.{extension}'    return filenamedef scan_action(exploit, url) -> None:    system('clear')    result = exploit.check_target_vulnerable()    if result:        print(' The..
Why did CrowdStrike IT outage happen ? (brief summary) The CrowdStrike IT outage was triggered by a problematic software update. Here’s what happened: What Caused the Outage: The issue stemmed from a flawed update to CrowdStrike's software, specifically involving a kernel-mode driver. This part of the software is crucial for the operating system, so any mistakes here can lead to serious system crashes. How the Fault Occurred:  I think that the syste..
Shocker HTB solving nmap -sT 10.129.50.112Starting Nmap 7.94SVN ( https://nmap.org ) at 2024-07-24 00:14 CDTNmap scan report for 10.129.50.112Host is up (0.067s latency).Not shown: 998 closed tcp ports (conn-refused)PORT     STATE SERVICE80/tcp   open  http2222/tcp open  EtherNetIP-1find / -name "raft-large-files-lowercase.txt" 2>/dev/null/usr/share/seclists/Discovery/Web-Content/raft-large-files-lowercase.txtnmap ..
AI 네트워크 방어 게임 (Cyber Shield) 4 by A to Z 영웅 (사이드 사이드 프로젝트) 3) methodologyThe methodology of this research focuses on developing an enhanced AI-driven server system designed to autonomously respond to network security threats. The core functionality of this system revolves around making real-time predictions and dynamically determining appropriate actions based on those predictions. This section provides a detailed description of the processes involved, ..
AI 네트워크 방어 게임 (Cyber Shield) 3 by A to Z 영웅 (사이드 사이드 프로젝트) 1) abstractIn recent years, the advent of multiple AI technologies, particularly those developed by OpenAI, has profoundly impacted the global landscape. On May 13, 2024, the release of ChatGPT-4o marked a significant milestone[1], capturing worldwide attention. Amid this rapid evolution in AI, current AI adaptation in cybersecurity largely focus on narrow tasks such as analyzing packets or imag..
AI 네트워크 방어 게임 (Cyber Shield) 2 by A to Z 영웅 (사이드 사이드 프로젝트) import numpy as npimport pandas as pdfrom sklearn.model_selection import train_test_splitfrom sklearn.preprocessing import StandardScalerfrom sklearn.neighbors import KNeighborsClassifierfrom sklearn.metrics import classification_report, confusion_matrix, accuracy_scoreimport joblibimport socketimport subprocessimport openaiimport os# Load train and test data# this data is from https://www.kaggl..
AI 네트워크 방어 게임 (Cyber Shield) 1 by A to Z 영웅 (사이드 사이드 프로젝트) import numpy as npimport pandas as pdfrom sklearn.model_selection import train_test_splitfrom sklearn.preprocessing import StandardScalerfrom sklearn.neighbors import KNeighborsClassifierimport joblibimport socketimport subprocessimport osimport requests# Load train data# this data is from https://www.kaggle.com/datasets/sampadab17/network-intrusion-detectiontrain_data = pd.read_csv("Train_data...
나르시스트 숫자들 """Problem Statement:Write a program that checks if a given number is an Armstrong number. An Armstrong number (also known as a narcissistic number) is a number that is equal to the sum of its own digits each raised to the power of the number of digits."""def is_armstrong_number(num):    num_digits = len(str(num))        sum_of_powers = 0    """    leng = len(str(x))    for i in range(1, leng + ..