본문 바로가기

전체 글

(123)
[exploit-exercises] Nebula level 01 Nebula level01AboutThere is a vulnerability in the below program that allows arbitrary programs to be executed, can you find it? To do this level, log in as the level01 account with the password level01 . Files for this level can be found in /home/flag01. Source code 1#include 2#include 3#include 4#include 5#include 6 7int main(int argc, char **argv, char **envp) 8{ 9 gid_t gid; 10 uid_t uid; 11..
[exploit-exercises] Nebula level 00 Nebula level00 AboutThis level requires you to find a Set User ID program that will run as the "flag00" account. You could also find this by carefully looking in top level directories in / for suspicious looking directories. Alternatively, look at the find man page. To access this level, log in as level00 with the password of level00 . Source codeThere is no source code available for this level문..
리버스 코드 엔지니어 리버싱 도구 종류disassemblerdebugger - PE, Scriptdevelopment tool - assembly, C/C++editor(Viewer) - text, hex, resource, registry, string, PEmonitoring tool - process, file, registry, network, messagememory dumpclassifiercalculator - hex, binarycompare tool - text, hexpacker/unpackervirtual machinedecompiler - C, VB, Delphiemulator
JAVA Applet Client for Chat Server 자바 채팅 서버 + Applet 클라이언트 소스 개발환경 : Windows 7개발언어 : JAVA개발도구 : Eclipse사용도구 : APM 소스 파일 다운 Chat Server- Applet ClinetsrcChatApplet.htmlChatApplet.javaChatClient.java - Chat ServersrcNakovChatServer.java NakovChartServer.java/** * Nakov Chat Server * (c) Svetlin Nakov, 2002 * http://www.nakov.com * * This program is an example from the book "Internet * programming with Java" by Svetlin Nakov. It is freeware. * For more inform..
JAVA Applet Client for Chat Server 자바 채팅 서버 + Applet 클라이언트 개발환경 : Windows 7개발언어 : JAVA개발도구 : Eclipse사용도구 : APM 실행 파일 다운 : * Chat Server- ChatApplet.class : Chat Client 구동 class 파일 (1/3)- ChatApplet.html : 외부 접속 웹 페이지- ChatClient$Listener.class : Chat Client 구동 class 파일 (2/3)- ChatClient.class : Chat Client 구동 class 파일 (3/3)- java.policy.applet : Chat Client 실행 환경- NakovChatServer.jar : Chat Server 구동 jar 파일 1. 서버 실행> java -jar NakovChatServer.jar 2. Cha..