전체 글
프로그래머스 Level2 - 가장 큰 수 (Javascript)
1 2 3 4 function solution(numbers) { let answer = numbers.sort((a, b) => `${b}${a}` - `${a}${b}`).join(''); return answer[0] === '0' ? '0' : answer; } Colored by Color Scripter cs 코딩테스트 문제풀이를 시작했는데.. 하루종일 고민하다가 답을 확인하고 현타가옴 sort 함수 내부동작에 대해 알게되는 계기가 되었다. `${b}${a}` - `${a}${b}` 의 의미는 sort 함수는 기본적으로 두개의 인자를 받는데(값 비교하기위해서) 문제에서는 값 자체크기 비교가 아닌 숫자를 이어 붙였을 때, 크기를 비교함. 그래서 템플릿 리터럴을 이용해서 string으로 이어붙여 ..
버그바운티(Bug Bounty) Write-up / Mass account takeovers [Slack]
https://hackerone.com/reports/737140 Slack disclosed on HackerOne: Mass account takeovers using HTTP... This researcher exploited an HTTP Request Smuggling bug on a Slack asset to perform a CL.TE-based hijack onto neighboring customer requests. This hijack forced the victim into an open-redirect that forwarded the victim onto the researcher's collaborator cl hackerone.com 해당 버그헌터는 HTTP Request S..