전체 글(304)
-
[powershell] *.ps1 파일 실행되게 설정하기
메모차 간단하게 작성합니다. Powershell script 를 작성 / 사용하다보면 아래와 같은 에러가 반겨주는 경우가 있습니다."이 시스템에서 스크립트를 실행할 수 없으므로 파일을 로드할 수 없습니다" "execution of scripts is disabled on this system." 이런 에러는Windows에서 정책적으로 Powershell 실행에 제한이 있어서 불가능합니다. 관리자 권한이 있는 powershell로 ExecutionPolicy를 RemoteSigned로 변경해주는 것으로 해결이 가능합니다. PS C:\> Set-ExecutionPolicy RemoteSigned 잘 바뀌었네요. 바뀐 권한을 보면 RemoteSigned로 변경되어있습니다. PS C:\> Get-Executio..
2019.09.03 -
[windows] session, station, DeskTop - session 0 이슈 (2,sample) - (펌)
Getting the Logon SID in C++ (Windows) Getting the Logon SID in C++ 11/17/2013 2 minutes to read In this article --> A logon security identifier (SID) identifies the logon session associated with an access token. A typical use of a logon SID is in an ACE that allows access for the duration of a docs.microsoft.com https://docs.microsoft.com/en-us/previous-versions//aa379608(v=vs.85) Starting an I..
2019.08.28 -
[windows] session, station, DeskTop - session 0 이슈 (1) - (펌)
대략적인 정보만 알고 있었는데, 이번에 확실히 파악하게 됐네요. Vista 이후 OS부터는 다 적용된다고 하니, Windows 7 / 10 만 넘치는 지금 환경에서는 ~ 100% 적용되는 내용들입니다. 아무래도 가장 중요한 부분은 Session 0에서 실행되는 process에서 UI 가 있는 process를 어떻게 처리할 것인지 이네요 https://securityfactory.tistory.com/95 [개념 이해] 윈도우 세션, 윈도우 스테이션, 윈도우 데스크탑 윈도우 스테이션에 대한 공부가 필요해서 자료를 찾아보다가 정리가 잘되어 있는 블로그를 찾았습니다. 글을 올리신 분도 다른 분의 원문을 번역해서 올렸는데 여기에서 제가 필요한 정보만 가져와서 조금 수정해.. securityfactory.tist..
2019.08.28 -
[windows] integrity level 권한 통신
경험한 내용 위주로 적어 놓습니다. Service로 동작하는 (session : 0, intelgrity : System, User Name : NT AUTHORITY\SYSTEM) Program(A)이 있는데 UI 가 있는 (session : 2, intelgrity : Medium, User Name : NT AUTHORITY\유져) 인 Process(B) 를 생성한다. (processtoken / CreateProcessAsUser 사용) B가 동작한 결과를 A에게 알려줘야 한다. 별생각 없이 공유 메모리로 A가 만들고 B가 거기에 써주면 될거 같았다. 안된다. 그럼 B가 만들고 쓰고, A가 보기만 하면 되니까 하고 해보니, "Global\\" 이걸 Medium에서는 만들수가 없다. 공유 메모리는 ..
2019.08.20 -
4바이트 문자열 Emoji
4바이트 문자열 Emoji http://getemoji.com/ 😋 Get Emoji — All Emojis to ✂️ Copy and 📋 Paste 👌 ✂️ Copy and 📋 Paste Emoji 👍 No apps required Emojis are supported on iOS, Android, macOS, Windows, Linux and ChromeOS. Copy and paste emojis for Twitter, Facebook, Slack, Instagram, Snapchat, Slack, GitHub, Instagram, WhatsApp and more. Use Emoji Classic o getemoji.com
2019.07.24 -
버추얼박스 라이센스 정책
https://www.virtualbox.org/wiki/VirtualBox_PUEL VirtualBox_PUEL – Oracle VM VirtualBox Oracle VM VirtualBox Extension Pack Personal Use and Evaluation License (PUEL) This VirtualBox Extension Pack Personal Use and Evaluation License governs your access to and use of the VirtualBox Extension Pack. It does not apply to the VirtualBox base pack www.virtualbox.org https://www.virtualbox.org/wiki/Lic..
2019.07.17