일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- LLVM
- uftrace
- LLVM Obfuscator
- tracerpid
- v8 tracing
- v8 optimizing
- thread local storage
- pinpoint
- apm
- 안티디버깅
- on stack replacement
- 난독화
- tracing
- Linux custom packer
- Android
- custom packer
- android inject
- pthread
- OSR
- Obfuscator
- Linux packer
- LLVM 난독화
- linux thread
- so inject
- on-stack replacement
- linux debugging
- anti debugging
- TLS
- initial-exec
- Injection
Archives
- Today
- Total
Why should I know this?
프로그래밍 언어 4종 헬로월드 CFG (C,C++,Rust,Go) 본문
"Hello World" in C
"Hello World" in C++
"Hello World" in Go
"Hello World" in Rust
<사용된 소스코드>
$ cat C_hello.c
#include <stdio.h>
int main()
{
printf("Hello world\n");
}
$ cat Cplus_hello.cpp
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
}
$ cat go_hello.go
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
$ cat rust_hello.rs
// This is the main function
fn main() {
// The statements here will be executed when the compiled binary is called
// Print text to the console
println!("Hello World!");
}
'Technic' 카테고리의 다른 글
오픈소스에서 원하는 코드 쉽게 찾기 (feat. GDB) (0) | 2022.02.11 |
---|---|
nox 탐지 (0) | 2021.11.02 |
Runtime에 C/C++ 함수 크기 구하기 (0) | 2021.06.02 |
valgrind 옵션 저장. (0) | 2018.09.29 |
Ptrace로 rip를 변경시 0 ~ 2 를 더해야하는 이유. (0) | 2018.07.24 |
Comments