목록전체보기 (248)
메모장 입니다2
보호되어 있는 글입니다.
보호되어 있는 글입니다.
0.type -*args def test(a, *args): print(a, args) print(type(args)) print(len(args)) print(args[0]) test(1,2,3,4,5,6) print('================') test(1,(2,3,4,5,6)) print('================') test(1,*(2,3,4,5,6)) -**kargs 0.type -*argsdef test(a, *args): print(a, args) print(type(args)) print(len(args)) print(args[0]) test(1,2,3,4,5,6) print('================') test(1,(2,3,4,5,6)) print('==========..

1. 튜토리얼 https://regexone.com/ -\d: the character \d can be used in place of any digit from 0 to 9 - . : match any single character \. : match the period character - [abc] : by defining them inside square brackets, the pattern [abc] will only match a single a, b, or c letter and nothing else. -\d: the character \d can be used in place of any digit from 0 to 9 -the pattern [0-6] will only match an..
print(chr(27) + "[2J")
*.참고글 https://bpsecblog.wordpress.com/2016/10/06/heap_vuln/ Heap 영역에서 발생하는 취약점을 알아보자! 우리집에 GDB 있으니 메모리 보고가라던 글이 기억 나시는지ㅎㅎ 시리즈 보러가기 그 때 유저영역 메모리의 코드, 데이터, 스택, 힙 영역에 대해 이야기 하면서, UAF 라는 취약점에 대해 그녀는 이렇게 이야기를 했었더랬죠. 도대체 이게 뭔 말이냐고 하는 문의가 좀 있었어요(…… bpsecblog.wordpress.com