블로그
- [FPGA] System Verilog 문법(6) Function 오늘은 System Verilog의 함수, Function 에 대해 알아보겠습니다. 1. Function 의 기본 구조 함수는 계산을 수행하고 반환하는 블록입니다. Function의 특징과 제약조건 System Verilog 에서의 Function (함수) 는 다른 프로그래밍 언어의 함수와 다릅니다.
- [FPGA] System Verilog 문법(1) Module FPGA를 설계할 수 있는 HDL 언어의 일종인 System Verilog 문법을 정리해보겠습니다 순서는 다음과 같습니다 1. Module 2. Data types 3. 함수 9. Parameter 10. Instance 그 외 객체지향을 위한 문법 or 설탕 문법은 실제 프로젝트 진행에서 익히는 걸로 하겠습니다. 1.
- Chaining RTL Calls 연습중인데 [SYSTEM] // system("/bin/sh") 실행 [AAAA] //system 함수 실행 후 리턴할 주소 ['/bin/sh'] 이렇게 구조를 짜고 실행을 해봤는데 주소에 개행
- 열혈 C++ chapter 1 - 5 이름공간(namespace)에 대한 소개 ;< std::endl; }} namespace progcomimp1{ void simplefunc(void) { std::cout << "progcom이 정의한 함수 " << std::endl; }} int main(){ BestComImp1::simpleFunc(); progcomimp1::simplefunc(); system("pause
- 열혈 C++ chapter 1 - 2 함수오버로딩 함수 오버로딩의 조건 1. 매개변수의 자료형이 다르다 2. 매개변수의 개수가 다르다. void myfunc(char c);void myfunc(int a, int b); int main(){ myfunc(); myfunc('A'); myfunc(12, 13); system
- iplanet - deny-existence 함수 클라이언트가 지정된 경로에 액세스 하려고 할때 404 Error 메시지를 보여주게 하는 함수 deny-existenceThe deny-existence function sends a 7–18 deny-existence Parameters Parameter Description path (Optional) Wildcard pattern of the file system
- 파라미터 변조 특히 PHP 애플리케이션에 명령어 삽입 공격이 자주 발생되고 있다. ( 명령어 삽입 공격 = PHP Injection 기법이라 불리기도 함 ) 발생 원인 취약한 함수 언어 취약 함수 open(), sysopen(), glob(), system(), eval() 등 Java System.* (특히 System.Runtime) C/C++ system(), exec