본문 바로가기

카테고리 없음

2020-10-27 08시 개발자 글 모음 | "우분투 ufw를 이용해서 elasti" 외 10개 이야기

[Malware analysis] CVE-2017-8291, 고스트스크립트 취약점 ② by 정현철

  • 이후 스레드 컨텍스트까지 얻은 후 ResumeThread()을 통해 Suspend 상태를 해제하는 것을 알 수 있다
  • AdjustTokenPrivilegeValue API을 이용하여 프로세스의 권한을 재설정하여 권한을 높여주는 것을 확인할 수 있다
  • 계속보게 되면 SYSTEM\CurrentControlSet\Control\SystemInformationSystemProduc 경로를 얻은 후 SytemProductName 값을 얻는 것을 확인할 수 있다


파워 오토메이트로 팀즈의 팀 개설하는 방법- 1/4 폼즈로 입력받기 by 이재석


    파워 오토메이트로 팀즈의 팀 개설하는 방법- 2/4 쉐어포인트에 폼즈 데이터 저장하기 by 이재석


      파워 오토메이트로 팀즈의 팀 개설하는 방법- 3/4 파워오토메이트로 자동화하기 by 이재석


        캡슐화에 대한 이해 by 이찬구 about Java

        • getKey() + key); } } class BClass{ public void 키가큰다(Human human
        • public class Human{ private Integer key; public void increaseKey(Integer key){ if(key > 200){ throw new RuntimeException(); } this
        • //합성관계 public class Aclass { private final Bclass bclass; public Aclass(){ bclass = new Bclass(); } } //집약관계 public class Cclass { private final Dclass bclass; public Cclass(Dclass dclass){ bclass = dclass; } } public static void main(String[] arg){ Aclass alcass = new Aclass(); Cclass clcass = new Cclass(new Dclass()); }


        [JPA] 연관관계 매핑 (연관관계 편의 메서드) by 한건국 about JPA

        • public void setTeam ( Team team ) { // 기존의 team과 member의 관계를 끊는다
        • team != null ) { this
        • add ( this ); // team -> member }


        파워 오토메이트로 팀즈의 팀 개설하는 방법- 4/4 업무자동화는 이런 것! by 이재석


          아마존 한인 개발자들에게 직접 듣는 Amazon 개발 문화의 모든 것 :: 차니의 #클라우드클리닉 22회 by 윤석찬 about Cloud

          • 클라우드에 대한 본격적인 기술 동향과 AWS 고객 활용 사례 및 여러분이 직접 올린 질문에 대한 답변을 드리는 프로그램입니다
          • (The opinions expressed here are my own and do not necessarily represent those of current or past employers
          • Please note that you are solely responsible for your judgment on checking facts for your investments and prohibit your citations as commercial content or news sources


          마케팅 비용을 30%로 확 줄여봤다 - 의외로 성과에 타격이 크지 않았다. 그리고 몇 가지 교훈이 임했다 by 이승훈

          • 디마케팅 효과가 존재했을 수도 있겠다 (때로는 멈춤 & 아무것도 하지 않음이
          • 물론 서비스 퀄리티 개선을 통해 추천을 하고 싶은 포인트 자체를 많이 만드는 것이 가장 중요하다)
          • 전환 가능성이 높은 신규 유저를 정확하고 효율적으로 찾아나갈 수 있는 방법을 연구 & 테스트하는 노력을 게을리하면 안된다


          asp.net mvc 5.0 환경에서 sentry 를 사용하기 by 심재운 about ASP.NET

          • CaptureException(exception); } protected void Application_End() { // Close the Sentry SDK (flushes queued events to Sentry) _sentry?
          • Controllers { public class HomeController : Controller { public ActionResult Index() { return View(); } // Example: An exception that goes unhandled by the app will be captured by Sentry: [HttpPost] public ActionResult PostIndex(string @params) { try { if (@params == null) { throw new ArgumentNullException(nameof(@params)
          • CheeseWheels = 512 }); throw ioe; } } // Example: An entity validation exception that goes unhandled by the app will be captured by Sentry: [HttpPost] public ActionResult ThrowEntityFramework() { using (var db = new ApplicationDbContext()) { var user = new ApplicationUser(); db


          우분투 ufw를 이용해서 elastic search 허용 ip 설정해 봅시다. by 조경완 about Ubuntu

          • delete NUM을 입력하면 앞에 붙은 NUM번 규칙이 삭제 됩니다
          • 그러면 9200번 포트에 대해서 기본적으로는 deny이지만
          • 그런데 클라이언트 컴퓨터에서 서버의 공인 ip 주소:9200을 치면 접속이 되지 않습니다