묻고 답해요
164만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
해결됨비전공자를 위한 진짜 입문 올인원 개발 부트캠프
코드 질문 있어요
#item-list > #item3 이런 코드를 짜셨는데 어차피 해당 파일에 item3는 한 개밖에 없는데 굳이 #item-list > 이걸 앞에 붙이는 이유가 있을까요 ? #item-list라는 것 안에 들어있는 item3를 지칭하는 것은 알겠는데 붙이는 이유가 있나요? 제가 #item-list > 이 부분을 제거해도 잘 작동되길래 질문 드립니다.
-
미해결스프링 핵심 원리 - 기본편
new memoryMemberRepository() 의 주소값 문의
public class AppConfig { public MemberService memberService() { return new MemberServiceImpl(new MemoryMemberRepository()); // MemberServiceImpl에 생성자 만들어서 넣어준다. Constructor Injection } public OrderService orderService() { return new OrderServiceImpl(new MemoryMemberRepository(), new FixDiscountPolicy()); // Constructor Injection }}여기서 new MemoryMemberRepository를 따로 했기 때문에 다른 주소값을 가지는게 아닌가요?? 그래서 MemberService와 OrderService는 다른 MemoryMemberRepository를가진다고 생각했었습니다.아니면 코드를 아래와 같이 써야한다고 생각했습니다. public class AppConfig { static MemberRepository memberRepository = new MemoryMemberRepository(); public MemberService memberService() { return new MemberServiceImpl(memberRepository); // MemberServiceImpl에 생성자 만들어서 넣어준다. Constructor Injection } public OrderService orderService() { return new OrderServiceImpl(memberRepository, new FixDiscountPolicy()); }}이렇게 해야 같은 주소값을 가지는 memberRepository객체를 만들 수 있다고 생각했습니다.제 생각이 틀린 건가요? 따로 new를 했는데 왜 같은 주소를 갖는지 모르겠습니다.
-
미해결[리뉴얼] 처음하는 파이썬 백엔드와 웹기술 입문 (파이썬 중급, flask[플라스크] 로 이해하는 백엔드 및 웹기술 기본) [풀스택 Part1-1]
결제 기능 연동하기 질문
강사님 안녕하세요, 강의 너무 잘 듣고 있습니다. 결제 기능 연동에 대한 질문드립니다. (질문) 참고할만한 결제 기능 연동 튜토리얼이나, 메뉴얼이 있을까요? 네이버페이, 아임포트, 그누보드 등 구글링해보았지만 Getting started 같은 예제는 따로 없고 단순 rest api 명령어 나열일 뿐이라, 제 수준에서 따라하기가 버거웠습니다. 어느 결제 모듈?을 사용해야 할지, 그리고 어떻게 구현해야할지 막막한 상황입니다. 적당한 모듈 추천, 참조 문서 등 방향 제시라도 해주신다면 큰 도움이 될 것 같습니다. 구현하고싶은 기능은 다음과 같습니다. 1. 웹페이지 내에 '구매하기' 버튼 추가 후, PG사 결제창 띄우기 2.회원의 결제 내역을 mysql DB에 저장하고, '마이페이지'에서 결제상태 변경하기 1강 48초에 보면, 완성된 웹페이지에서 결제화면이 나오는데, Part 1 강의를 모두 들어본 결과 해당부분 구현하는 것에 대한 코멘트를 찾지 못했습니다. ㅜㅜ 강의 자료 중 AWS 서버 연결하는 것에 대해서는 강의에서 다루진 않더라도 자료에 적어주셔서 너무 큰 도움이 되었습니다. 혹시 이런식으로 영상까진 아니더라도, 문서로 된 짧은 메뉴얼이라도 만들어주실 계획은 없으실까요? 혹시 해서 Part 2 내용인지 했는데, Part2에도 없는듯합니다. (아직 수강중이라서 혹시 다루셨다면 강의챕터 알려주시면 감사하겠습니다.) 감사합니다.
-
해결됨캐글 Advanced 머신러닝 실전 박치기
Group by Case When을 새로 작성해보았습니다.
안녕하세요 권철민 강사님!강의 매우 유익하게 듣고 있습니다!!강사님 강의만 총 6개정도 결제했습니다 ㅎㅎ파이썬 머신러닝 부터 CNN, 딥러닝심화, 캐글까지 섭렵하려합니다!! ------------------------------------------------ 강의 하신 내용 가운데 "Group by Case When" 부분을새로 만들어 보았습니다! (올린 사진이 좀 작네요 ㅠㅠ 죄송합니다) 같은 결과를 다르게 도출하는 방법이 있음을 알아가며,이렇게 하나씩 해보는게, 매우 큰 도움이 되고 있습니다. 감사합니다!!
-
미해결파이썬/장고 웹서비스 개발 완벽 가이드 with 리액트
debug_toolbar 세팅에 problem 메시지가 보입니다.
긴 설명보다 스크린 캡쳐 화면 붙여드립니다. 구글링을 했는데 마땅한 답변이 없어보여 질문드립니다. 미리 감사드립니다.
-
미해결모든 개발자를 위한 HTTP 웹 기본 지식
멱등 - 고려하지 않는다 라는 말의 의미
안녕하세요! 강의를 보다 이해가 잘 가지 않아 문의 드립니다. 멱등은 외부 요인으로부터 중간에 리소스가 변경되는 경우는 고려하지 않는다고 하셨는데요. 고려하지 않는다 라는 말의 의미를 사용자 1의 데이터가 사용자 2로 인해 값이 20에서 30으로 변경된 경우는, 결과적으로 값이 변경되었기 때문에 스펙상 GET은 멱등함에도 불구하고 멱등하지 않게 됐다는 말로 이해하면 될까요?
-
미해결애플 웹사이트 인터랙션 클론!
선생님 안녕하세요!
선생님 안녕하세요 canvas_opacity_out 실행되는 시점에 main.js:299 Uncaught TypeError: Failed to execute 'drawImage' on 'CanvasRenderingContext2D': The provided value is not of type '(CSSImageValue or HTMLCanvasElement or HTMLImageElement or HTMLVideoElement or ImageBitmap or OffscreenCanvas or SVGImageElement or VideoFrame)'. at playAnimation (main.js:299) at scrollLoop (main.js:389) at main.js:400 에러가 출력 됩니다. 혼자 해결해보려고 완성본 파일도 찾아보고 했지만 해결이 어려워 질문 드립니다. 감사합니다. (() => { let yOffset = 0 // window.pageYOffset 대신 사용할 변수 let prevScrollHeight = 0 // 현재 스크롤 위치(yOffset)보다 이전에 위치한 스크롤 섹션들의 스크롤 높이값의 합 let currentScene = 0 // 현재 활성하된(눈 앞에 보고 있는 ) 화면 let enterNewScene = false // 새로운 scene이 시작되는 순간 false const sceneInfo = [ { // 0 type: 'sticky', heightNum : 5, // 브라우저 높이의 5배로 scrollHeight 세팅 scrollHeight: 0, objects: { container: document.querySelector('#scroll-section-0'), messageA: document.querySelector('#scroll-section-0 .main-message.a'), messageB: document.querySelector('#scroll-section-0 .main-message.b'), messageC: document.querySelector('#scroll-section-0 .main-message.c'), messageD: document.querySelector('#scroll-section-0 .main-message.d'), canvas: document.querySelector('#video-canvas-0'), context: document.querySelector('#video-canvas-0').getContext('2d'), videoImages: [] }, values: { videoImageCount: 578, imageSequence: [0, 577], canvas_opacity: [1,0,{ start: 0.9 , end: 1}], messageA_opacity_in: [0, 1, { start: 0.05, end: 0.15 }], messageB_opacity_in: [0, 1, { start: 0.25, end: 0.29 }], messageC_opacity_in: [0, 1, { start: 0.45, end: 0.5 }], messageD_opacity_in: [0, 1, { start: 0.7, end: 0.85 }], messageA_translateY_in: [20, 0, { start: 0.1, end: 0.2 }], messageB_translateY_in: [20, 0, { start: 0.3, end: 0.4 }], messageC_translateY_in: [20, 0, { start: 0.5, end: 0.6 }], messageD_translateY_in: [20, 0, { start: 0.7, end: 0.8 }], messageA_opacity_out: [1, 0, { start: 0.1, end: 0.2 }], messageB_opacity_out: [1, 0, { start: 0.3, end: 0.31}], messageC_opacity_out: [1, 0, { start: 0.55, end: 0.6 }], messageD_opacity_out: [1, 0, { start: 0.9, end: 1.0 }], messageA_translateY_out: [0, -20, { start: 0.25, end: 0.3 }], messageB_translateY_out: [0, -20, { start: 0.45, end: 0.5 }], messageC_translateY_out: [0, -20, { start: 0.65, end: 0.7 }], messageD_translateY_out: [0, -20, { start: 0.85, end: 0.9 }], } }, { // 1 type: 'normal', heightNum : 5, scrollHeight: 0, objects: { container: document.querySelector('#scroll-section-1'), content: document.querySelector('#scroll-section-1 .description') } }, { // 2 type: 'sticky', heightNum : 5, scrollHeight: 0, objects: { container: document.querySelector('#scroll-section-2'), messageA: document.querySelector('#scroll-section-2 .a'), messageB: document.querySelector('#scroll-section-2 .b'), messageC: document.querySelector('#scroll-section-2 .c'), pinB: document.querySelector('#scroll-section-2 .b .pin'), pinC: document.querySelector('#scroll-section-2 .c .pin'), canvas: document.querySelector('#video-canvas-1'), context: document.querySelector('#video-canvas-1').getContext('2d'), videoImages: [] }, values: { videoImageCount: 622, imageSequence: [0, 621], canvas_opacity_in: [0,1,{ start: 0, end: 0.1}], canvas_opacity_out: [1,0,{ start: 0.9, end: 0.95}], messageA_translateY_in: [20, 0, { start: 0.15, end: 0.2 }], messageB_translateY_in: [30, 0, { start: 0.5, end: 0.55 }], messageC_translateY_in: [30, 0, { start: 0.72, end: 0.77 }], messageA_opacity_in: [0, 1, { start: 0.15, end: 0.2 }], messageB_opacity_in: [0, 1, { start: 0.5, end: 0.55 }], messageC_opacity_in: [0, 1, { start: 0.72, end: 0.77 }], messageA_translateY_out: [0, -20, { start: 0.3, end: 0.35 }], messageB_translateY_out: [0, -20, { start: 0.58, end: 0.63 }], messageC_translateY_out: [0, -20, { start: 0.85, end: 0.9 }], messageA_opacity_out: [1, 0, { start: 0.3, end: 0.35 }], messageB_opacity_out: [1, 0, { start: 0.58, end: 0.63 }], messageC_opacity_out: [1, 0, { start: 0.85, end: 0.9 }], pinB_scaleY: [0.5, 1, { start: 0.6, end: 0.65 }], pinC_scaleY: [0.5, 1, { start: 0.87, end: 0.92 }], pinB_opacity_in: [0, 1, { start: 0.6, end: 0.65 }], pinC_opacity_in: [0, 1, { start: 0.87, end: 0.92 }], pinB_opacity_out: [1, 0, { start: 0.68, end: 0.73 }], pinC_opacity_out: [1, 0, { start: 0.95, end: 1 }] } }, { // 3 type: 'sticky', heightNum : 5, scrollHeight: 0, objects: { container: document.querySelector('#scroll-section-3'), canvasCaption: document.querySelector('.canvas-caption') }, values: { } } ] const setCanvasImages = () => { let imgElem for( let i = 0; i < sceneInfo[0].values.videoImageCount; i++) { imgElem = new Image() imgElem.src =`./video/IMG_${5555 + i}.jpg` sceneInfo[0].objects.videoImages.push(imgElem) } let imgElem2 for( let i = 0; i < sceneInfo[0].values.videoImageCount; i++) { imgElem2 = new Image() imgElem2.src =`./video/IMG_${6134 + i}.jpg` sceneInfo[2].objects.videoImages.push(imgElem2) } } setCanvasImages() const setLayout = () => { // 각 스크롤 섹션의 높이 세팅 for( let i = 0; i < sceneInfo.length; i++ ) { if( sceneInfo[i].type === 'sticky') { sceneInfo[i].scrollHeight = sceneInfo[i].heightNum * window.innerHeight sceneInfo[i].objects.container.style.height = `${sceneInfo[i].scrollHeight}px` } else if( sceneInfo[i].type === 'normal') { sceneInfo[i].scrollHeight = sceneInfo[i].objects.container.offsetHeight } sceneInfo[i].objects.container.style.height = `${sceneInfo[i].scrollHeight}px` } yOffset = window.pageYOffset let totalScrollHeight = 0 for ( let i = 0; i < sceneInfo.length; i++ ) { totalScrollHeight += sceneInfo[i].scrollHeight if( totalScrollHeight >= yOffset ) { currentScene = i break; } } document.body.setAttribute('id', `show-scene-${currentScene}`) const heightRatio = window.innerHeight / 1080 sceneInfo[0].objects.canvas.style.transform = `translate3d(-50%, -50%, 0) scale(${heightRatio})` sceneInfo[2].objects.canvas.style.transform = `translate3d(-50%, -50%, 0) scale(${heightRatio})` } const calcValues = ( values, currentYOffset ) => { let rv // 현재 스크롤섹션에서 스크롤된 비율로 구하기 const scrollHeight = sceneInfo[currentScene].scrollHeight const scrollRatio = currentYOffset / scrollHeight if ( values.length === 3 ) { // start ~~ end 사이에 애니메이션 실행 const partScrollStart = values[2].start * scrollHeight const partScrollEnd = values[2].end * scrollHeight const partScrollHeight = partScrollEnd - partScrollStart if( currentYOffset >= partScrollStart && currentYOffset <= partScrollEnd) { rv = (currentYOffset - partScrollStart) / partScrollHeight * ( values[1] - values[0] ) + values[0] } else if( currentYOffset < partScrollStart ) { rv = values[0] } else if( currentYOffset > partScrollEnd ) { rv = values[1] } } else { rv = scrollRatio * ( values[1] - values[0]) + values[0] } return rv } const playAnimation = () => { const objects = sceneInfo[currentScene].objects const values = sceneInfo[currentScene].values const currentYOffset = yOffset - prevScrollHeight const scrollHeight = sceneInfo[currentScene].scrollHeight const scrollRatio = currentYOffset / scrollHeight switch (currentScene) { case 0: let sequence = Math.round(calcValues(values.imageSequence, currentYOffset)) objects.context.drawImage(objects.videoImages[sequence], 0, 0) objects.canvas.style.opacity = calcValues(values.canvas_opacity, currentYOffset) if (scrollRatio <= 0.22) { // in objects.messageA.style.opacity = calcValues(values.messageA_opacity_in, currentYOffset); objects.messageA.style.transform = `translate3d(0, ${calcValues(values.messageA_translateY_in, currentYOffset)}%, 0)`; } else { // out objects.messageA.style.opacity = calcValues(values.messageA_opacity_out, currentYOffset); objects.messageA.style.transform = `translate3d(0, ${calcValues(values.messageA_translateY_out, currentYOffset)}%, 0)`; } if (scrollRatio <= 0.42) { // in objects.messageB.style.opacity = calcValues(values.messageB_opacity_in, currentYOffset); objects.messageB.style.transform = `translate3d(0, ${calcValues(values.messageB_translateY_in, currentYOffset)}%, 0)`; } else { // out objects.messageB.style.opacity = calcValues(values.messageB_opacity_out, currentYOffset); objects.messageB.style.transform = `translate3d(0, ${calcValues(values.messageB_translateY_out, currentYOffset)}%, 0)`; } if (scrollRatio <= 0.62) { // in objects.messageC.style.opacity = calcValues(values.messageC_opacity_in, currentYOffset); objects.messageC.style.transform = `translate3d(0, ${calcValues(values.messageC_translateY_in, currentYOffset)}%, 0)`; } else { // out objects.messageC.style.opacity = calcValues(values.messageC_opacity_out, currentYOffset); objects.messageC.style.transform = `translate3d(0, ${calcValues(values.messageC_translateY_out, currentYOffset)}%, 0)`; } if (scrollRatio <= 0.82) { // in objects.messageD.style.opacity = calcValues(values.messageD_opacity_in, currentYOffset); objects.messageD.style.transform = `translate3d(0, ${calcValues(values.messageD_translateY_in, currentYOffset)}%, 0)`; } else { // out objects.messageD.style.opacity = calcValues(values.messageD_opacity_out, currentYOffset); objects.messageD.style.transform = `translate3d(0, ${calcValues(values.messageD_translateY_out, currentYOffset)}%, 0)`; } break case 2: let sequence2 = Math.round(calcValues(values.imageSequence, currentYOffset)) objects.context.drawImage(objects.videoImages[sequence2], 0, 0) if (scrollRatio <= 0.5) { // in objects.canvas.style.opacity = calcValues(values.canvas_opacity_in, currentYOffset) } else { // out objects.canvas.style.opacity = calcValues(values.canvas_opacity_out, currentYOffset) } if (scrollRatio <= 0.25) { // in objects.messageA.style.opacity = calcValues(values.messageA_opacity_in, currentYOffset); objects.messageA.style.transform = `translate3d(0, ${calcValues(values.messageA_translateY_in, currentYOffset)}%, 0)`; } else { // out objects.messageA.style.opacity = calcValues(values.messageA_opacity_out, currentYOffset); objects.messageA.style.transform = `translate3d(0, ${calcValues(values.messageA_translateY_out, currentYOffset)}%, 0)`; } if (scrollRatio <= 0.57) { // in objects.messageB.style.transform = `translate3d(0, ${calcValues(values.messageB_translateY_in, currentYOffset)}%, 0)`; objects.messageB.style.opacity = calcValues(values.messageB_opacity_in, currentYOffset); objects.pinB.style.transform = `scaleY(${calcValues(values.pinB_scaleY, currentYOffset)})`; } else { // out objects.messageB.style.transform = `translate3d(0, ${calcValues(values.messageB_translateY_out, currentYOffset)}%, 0)`; objects.messageB.style.opacity = calcValues(values.messageB_opacity_out, currentYOffset); objects.pinB.style.transform = `scaleY(${calcValues(values.pinB_scaleY, currentYOffset)})`; } if (scrollRatio <= 0.83) { // in objects.messageC.style.transform = `translate3d(0, ${calcValues(values.messageC_translateY_in, currentYOffset)}%, 0)`; objects.messageC.style.opacity = calcValues(values.messageC_opacity_in, currentYOffset); objects.pinC.style.transform = `scaleY(${calcValues(values.pinC_scaleY, currentYOffset)})`; } else { // out objects.messageC.style.transform = `translate3d(0, ${calcValues(values.messageC_translateY_out, currentYOffset)}%, 0)`; objects.messageC.style.opacity = calcValues(values.messageC_opacity_out, currentYOffset); objects.pinC.style.transform = `scaleY(${calcValues(values.pinC_scaleY, currentYOffset)})`; } break case 3: break } } const scrollLoop = () => { enterNewScene = false prevScrollHeight = 0 // 값 초기화 for( let i = 0; i < currentScene; i++ ) { prevScrollHeight += sceneInfo[i].scrollHeight } if( yOffset > prevScrollHeight + sceneInfo[currentScene].scrollHeight) { enterNewScene = true currentScene ++ document.body.setAttribute('id', `show-scene-${currentScene}`) } if( yOffset < prevScrollHeight) { if( currentScene === 0) return //모바일 바운스 때문에 enterNewScene = true currentScene -- document.body.setAttribute('id', `show-scene-${currentScene}`) } if( enterNewScene ) return playAnimation() } window.addEventListener('scroll',() => { yOffset = window.pageYOffset scrollLoop() }) window.addEventListener('load', () => { setLayout() sceneInfo[0].objects.context.drawImage(sceneInfo[0].objects.videoImages[0], 0, 0) }) window.addEventListener('resize', setLayout) })()
-
미해결자바 ORM 표준 JPA 프로그래밍 - 기본편
안녕하세요 Entity에서 Map 프로퍼티 질문입니다!
[질문 템플릿]1. 강의 내용과 관련된 질문인가요? 아니요2. 인프런의 질문 게시판과 자주 하는 질문에 없는 내용인가요? 예3. 질문 잘하기 메뉴얼을 읽어보셨나요? 예[질문 내용]안녕하세요 강의를 다 듣고 따로 실습을 진행하다가 궁금함이 생겨 질문드립니다! 체스 게임을 구현 중 Board 클래스에 Map형태로 key값은 Position 클래스 value는 Piece 클래스로 설정하였고 @MapKeyJoinColumn어노테이션을 사용하여 연관관계 매핑하였습니다 생성한 board를 초기화할 때 Position과 Piece도 같이 초기화해주는데 Map부분 테이블이 Position보다 먼저 생성되어 오류가 발생합니다 확인해보니 hibernate에서 Map Key값을 cascade를 지원하지 않는다고 합니다 1. Key cascade를 지원하지 않으니 board 초기화할때 key를 생성하고 디비에 저장시키는 작업을 먼저 진행할 수 밖에 없는걸까요? 혹시 다른 방법이 있을까요? ( 위 코드에서는 BoardFactory에서 Position을 먼저 디비에 flush 시키는 코드 추가 ) 2. 현업에서는 엔티티에서 Map 속성을 종종 사용하는지 지양하는지 궁금합니다
-
미해결iOS/Android 앱 개발을 위한 실전 React Native - Basic
안녕하십니까 이번에 수강을 하게된 직장인 입니다
안녕하십니까 강의자님 궁금증이 생겨 커뮤니티에 글을 남깁니다. hooks 보단 Class 형을 다루시고 있는데 Class를 사용하는 이유가 있습니까?? hooks 보다 나은 점이나 그런 이유에 대해 궁금합니다!!
-
해결됨디스이즈 디스커버 디스코드 파이썬봇
네온사인 닉네임 만들기 오류
``` discord.ext.commands.errors.CommandInvokeError: Command raised an exception: Forbidden: 403 Forbidden (error code: 50013): Missing Permissions ``` 역할 권한이 없다고 계속 오류가 나는데 어떻게 해야할지 모르겠네요..
-
미해결실전! 스프링 부트와 JPA 활용2 - API 개발과 성능 최적화
spring MVC와 REST API차이의 개념이 궁금합니다.
제가 이해한건 Spring MVC와 REST API 개발의 차이는 VIEW를 반환하는가 아니면 JSON의 데이터를 반환하는가의 차이인데 제가 이해한것이 맞나요??
-
미해결15일간의 빅데이터 파일럿 프로젝트
flume으로 파일이 잘 넘어갔는지 확인하는 부분에서 오류가 납니다ㅠㅠ
안녕하세요 플럼에서 자꾸 오류가 나서 문의 드립니다....
-
미해결유니티(Unity)로 시작하는 게임개발: Part 3. 슈팅게임 개발
코드스타일 문의
안녕하세요. 코드스타일(?)관련 문의를 드립니다.공부하던 도중 업데이트함수를 아래와 같이, 강의교안과 다르게 작성해보았습니다.메모리 구조 관련하여 강의교안처럼 newX, newY를 따로 만드는 것이 좋은지, 아니면 그냥 아래처럼 써도 되는건지 모르겠습니다. using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerScript : MonoBehaviour { public float speed = 5; Vector3 min, max; Vector2 colSize; Vector2 chrSize; void Start() { min = Camera.main.ViewportToWorldPoint(new Vector3(0, 0, 0)); max = Camera.main.ViewportToWorldPoint(new Vector3(1, 1, 0)); print("min: " + min + ", max: " + max); colSize = GetComponent<BoxCollider2D>().size; chrSize = new Vector2(colSize.x / 2, colSize.y / 2); print(chrSize); } void Update() { float x = Input.GetAxisRaw("Horizontal"); float y = Input.GetAxisRaw("Vertical"); Vector3 dir = new Vector3(x, y, 0).normalized; transform.position += dir * Time.deltaTime * speed; if(transform.position.x < min.x + chrSize.x) { transform.position = new Vector3(min.x + chrSize.x, transform.position.y, transform.position.z); } if (transform.position.x > max.x - chrSize.x) { transform.position = new Vector3(max.x - chrSize.x, transform.position.y, transform.position.z); } if (transform.position.y < min.y + chrSize.y) { transform.position = new Vector3(transform.position.x, min.y + chrSize.y, transform.position.z); } if (transform.position.y > max.y - chrSize.y) { transform.position = new Vector3(transform.position.x, max.y - chrSize.y, transform.position.z); } } }
-
미해결프론트엔드 개발자를 위한 웹팩
html 페이지가 여러개인 경우는 어떻게 구성해야 할까요?
안녕하세요~ 한 페이지로 셋팅하는 것은 이제 마스터 했습니다~ 다만 산출물이 SPA가 아닌 1) 1번 html에서 링크를 클릭했을 때 2번 html로 페이지가 넘어가도록 보여져야 하는 경우 2) 여러 페이지 작업시 각각의 페이지 뷰를 확인해야 하는 경우 이경우 실무에서는 webpack 세팅이 어떻게 되어야 하는지 궁금합니다~!
-
미해결시스템엔지니어가 알려주는 리눅스 실전편 Bash Shell Script
서버 구축시 에러...
Stderr: VBoxManage.exe: error: The virtual machine 'cent1' has terminated unexpectedly during startup with exit code -1073741819 (0xc0000005). More details may be available in 'C:\Users\lee\VirtualBox VMs\cent1\Logs\VBoxHardening.log' VBoxManage.exe: error: Details: code E_FAIL (0x80004005), component MachineWrap, interface IMachine 이오류 뜨고 설치가 안되는데요?? ;; =========== log ===== 884.b80: Log file opened: 5.2.42r137960 g_hStartupLog=000000000000022c g_uNtVerCombined=0xa047bb00 884.b80: \SystemRoot\System32\ntdll.dll: 884.b80: CreationTime: 2021-08-08T07:58:56.460910800Z 884.b80: LastWriteTime: 2021-08-08T07:58:56.550669500Z 884.b80: ChangeTime: 2021-08-13T10:30:23.954860700Z 884.b80: FileAttributes: 0x20 884.b80: Size: 0x1e8050 884.b80: NT Headers: 0xd8 884.b80: Timestamp: 0x418df01d 884.b80: Machine: 0x8664 - amd64 884.b80: Timestamp: 0x418df01d 884.b80: Image Version: 10.0 884.b80: SizeOfImage: 0x1f0000 (2031616) 884.b80: Resource Dir: 0x17f000 LB 0x6f3b8 884.b80: [Version info resource found at 0xd8! (ID/Name: 0x1; SubID/SubName: 0x409)] 884.b80: [Raw version resource data: 0x17f0f0 LB 0x380, codepage 0x0 (reserved 0x0)] 884.b80: ProductName: Microsoft® Windows® Operating System 884.b80: ProductVersion: 10.0.18362.1679 884.b80: FileVersion: 10.0.18362.1679 (WinBuild.160101.0800) 884.b80: FileDescription: NT Layer DLL 884.b80: \SystemRoot\System32\kernel32.dll: 884.b80: CreationTime: 2021-08-13T10:28:27.561050600Z 884.b80: LastWriteTime: 2021-08-13T10:28:27.603935100Z 884.b80: ChangeTime: 2021-08-13T11:36:14.013362000Z 884.b80: FileAttributes: 0x20 884.b80: Size: 0xb04a0 884.b80: NT Headers: 0xf8 884.b80: Timestamp: 0xbba1b5fe 884.b80: Machine: 0x8664 - amd64 884.b80: Timestamp: 0xbba1b5fe 884.b80: Image Version: 10.0 884.b80: SizeOfImage: 0xb2000 (729088) 884.b80: Resource Dir: 0xb0000 LB 0x520 884.b80: [Version info resource found at 0x90! (ID/Name: 0x1; SubID/SubName: 0x409)] 884.b80: [Raw version resource data: 0xb00b0 LB 0x3a4, codepage 0x0 (reserved 0x0)] 884.b80: ProductName: Microsoft® Windows® Operating System 884.b80: ProductVersion: 10.0.18362.1714 884.b80: FileVersion: 10.0.18362.1714 (WinBuild.160101.0800) 884.b80: FileDescription: Windows NT BASE API Client DLL 884.b80: \SystemRoot\System32\KernelBase.dll: 884.b80: CreationTime: 2021-08-13T10:28:44.194579400Z 884.b80: LastWriteTime: 2021-08-13T10:28:44.343181600Z 884.b80: ChangeTime: 2021-08-13T11:36:19.717616300Z 884.b80: FileAttributes: 0x20 884.b80: Size: 0x2a62b0 884.b80: NT Headers: 0xf8 884.b80: Timestamp: 0x62b4f97e 884.b80: Machine: 0x8664 - amd64 884.b80: Timestamp: 0x62b4f97e 884.b80: Image Version: 10.0 884.b80: SizeOfImage: 0x2a6000 (2777088) 884.b80: Resource Dir: 0x280000 LB 0x548 884.b80: [Version info resource found at 0x90! (ID/Name: 0x1; SubID/SubName: 0x409)] 884.b80: [Raw version resource data: 0x2800b0 LB 0x3bc, codepage 0x0 (reserved 0x0)] 884.b80: ProductName: Microsoft® Windows® Operating System 884.b80: ProductVersion: 10.0.18362.1714 884.b80: FileVersion: 10.0.18362.1714 (WinBuild.160101.0800) 884.b80: FileDescription: Windows NT BASE API Client DLL 884.b80: \SystemRoot\System32\apisetschema.dll: 884.b80: CreationTime: 2019-03-19T04:43:54.837151500Z 884.b80: LastWriteTime: 2019-03-19T04:43:54.837151500Z 884.b80: ChangeTime: 2021-08-13T10:30:23.216833300Z 884.b80: FileAttributes: 0x20 884.b80: Size: 0x1d028 884.b80: NT Headers: 0xc8 884.b80: Timestamp: 0xd6ced080 884.b80: Machine: 0x8664 - amd64 884.b80: Timestamp: 0xd6ced080 884.b80: Image Version: 10.0 884.b80: SizeOfImage: 0x1e000 (122880) 884.b80: Resource Dir: 0x1d000 LB 0x408 884.b80: [Version info resource found at 0x48! (ID/Name: 0x1; SubID/SubName: 0x409)] 884.b80: [Raw version resource data: 0x1d060 LB 0x3a8, codepage 0x0 (reserved 0x0)] 884.b80: ProductName: Microsoft® Windows® Operating System 884.b80: ProductVersion: 10.0.18362.1 884.b80: FileVersion: 10.0.18362.1 (WinBuild.160101.0800) 884.b80: FileDescription: ApiSet Schema DLL 884.b80: NtOpenDirectoryObject failed on \Driver: 0xc0000022 884.b80: supR3HardenedWinFindAdversaries: 0x0 884.b80: supR3HardenedWinInitAppBin(0x0): '\Device\HarddiskVolume3\Program Files\Oracle\VirtualBox' 884.b80: Calling main() 884.b80: SUPR3HardenedMain: pszProgName=VBoxHeadless fFlags=0x0 884.b80: supR3HardenedWinInitAppBin(0x0): '\Device\HarddiskVolume3\Program Files\Oracle\VirtualBox' 884.b80: SUPR3HardenedMain: Respawn #1 884.b80: System32: \Device\HarddiskVolume3\Windows\System32 884.b80: WinSxS: \Device\HarddiskVolume3\Windows\WinSxS 884.b80: KnownDllPath: C:\WINDOWS\System32 884.b80: supR3HardenedWinInit: Performing a limited self purification... 884.b80: supHardNtVpScanVirtualMemory: enmKind=SELF_PURIFICATION 884.b80: *0000000000000000-000000000015ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000160000-000000000016ffff 0x0004/0x0004 0x0040000 884.b80: *0000000000170000-0000000000170fff 0x0040/0x0040 0x0020000 !! 884.b80: 0000000000171000-000000000017ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000180000-000000000019afff 0x0002/0x0002 0x0040000 884.b80: 000000000019b000-000000000019ffff 0x0001/0x0000 0x0000000 884.b80: *00000000001a0000-00000000001a3fff 0x0002/0x0002 0x0040000 884.b80: 00000000001a4000-00000000001affff 0x0001/0x0000 0x0000000 884.b80: *00000000001b0000-00000000001b1fff 0x0004/0x0004 0x0020000 884.b80: 00000000001b2000-00000000001bffff 0x0001/0x0000 0x0000000 884.b80: *00000000001c0000-00000000001c0fff 0x0002/0x0002 0x0040000 884.b80: 00000000001c1000-00000000001cffff 0x0001/0x0000 0x0000000 884.b80: *00000000001d0000-00000000001d1fff 0x0040/0x0040 0x0020000 !! 884.b80: 00000000001d2000-00000000001dffff 0x0001/0x0000 0x0000000 884.b80: *00000000001e0000-00000000001e1fff 0x0004/0x0004 0x0020000 884.b80: 00000000001e2000-00000000001effff 0x0001/0x0000 0x0000000 884.b80: *00000000001f0000-00000000001f2fff 0x0004/0x0004 0x0020000 884.b80: 00000000001f3000-00000000001fffff 0x0001/0x0000 0x0000000 884.b80: *0000000000200000-000000000027bfff 0x0000/0x0004 0x0020000 884.b80: 000000000027c000-0000000000284fff 0x0004/0x0004 0x0020000 884.b80: 0000000000285000-00000000003fffff 0x0000/0x0004 0x0020000 884.b80: *0000000000400000-00000000004b8fff 0x0000/0x0004 0x0020000 884.b80: 00000000004b9000-00000000004bbfff 0x0104/0x0004 0x0020000 884.b80: 00000000004bc000-00000000004fffff 0x0004/0x0004 0x0020000 884.b80: *0000000000500000-00000000005c6fff 0x0002/0x0002 0x0040000 884.b80: 00000000005c7000-00000000005cffff 0x0001/0x0000 0x0000000 884.b80: *00000000005d0000-00000000005d1fff 0x0004/0x0004 0x0020000 884.b80: 00000000005d2000-0000000000601fff 0x0000/0x0004 0x0020000 884.b80: 0000000000602000-000000000060ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000610000-0000000000610fff 0x0002/0x0002 0x0040000 884.b80: 0000000000611000-000000000061ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000620000-000000000062efff 0x0004/0x0004 0x0020000 884.b80: 000000000062f000-000000000062ffff 0x0000/0x0004 0x0020000 884.b80: *0000000000630000-0000000000631fff 0x0004/0x0004 0x0020000 884.b80: 0000000000632000-0000000000661fff 0x0000/0x0004 0x0020000 884.b80: 0000000000662000-000000000066ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000670000-0000000000673fff 0x0002/0x0002 0x0040000 884.b80: 0000000000674000-0000000000677fff 0x0000/0x0002 0x0040000 884.b80: 0000000000678000-000000000067ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000680000-000000000068efff 0x0004/0x0004 0x0020000 884.b80: 000000000068f000-000000000068ffff 0x0000/0x0004 0x0020000 884.b80: 0000000000690000-00000000006affff 0x0001/0x0000 0x0000000 884.b80: *00000000006b0000-00000000006f5fff 0x0004/0x0004 0x0020000 884.b80: 00000000006f6000-00000000007affff 0x0000/0x0004 0x0020000 884.b80: *00000000007b0000-00000000008a9fff 0x0000/0x0004 0x0020000 884.b80: 00000000008aa000-00000000008acfff 0x0104/0x0004 0x0020000 884.b80: 00000000008ad000-00000000008affff 0x0004/0x0004 0x0020000 884.b80: *00000000008b0000-00000000009abfff 0x0000/0x0004 0x0020000 884.b80: 00000000009ac000-00000000009aefff 0x0104/0x0004 0x0020000 884.b80: 00000000009af000-00000000009affff 0x0004/0x0004 0x0020000 884.b80: *00000000009b0000-0000000000aaafff 0x0000/0x0004 0x0020000 884.b80: 0000000000aab000-0000000000aadfff 0x0104/0x0004 0x0020000 884.b80: 0000000000aae000-0000000000aaffff 0x0004/0x0004 0x0020000 884.b80: *0000000000ab0000-0000000000af9fff 0x0002/0x0002 0x0040000 884.b80: 0000000000afa000-0000000000caffff 0x0000/0x0002 0x0040000 884.b80: *0000000000cb0000-0000000000e30fff 0x0002/0x0002 0x0040000 884.b80: 0000000000e31000-0000000000e3ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000e40000-000000000111cfff 0x0002/0x0002 0x0040000 884.b80: 000000000111d000-0000000002240fff 0x0000/0x0002 0x0040000 884.b80: 0000000002241000-000000000224ffff 0x0001/0x0000 0x0000000 884.b80: *0000000002250000-0000000002250fff 0x0004/0x0004 0x0020000 884.b80: 0000000002251000-0000000002281fff 0x0000/0x0004 0x0020000 884.b80: 0000000002282000-000000000229ffff 0x0001/0x0000 0x0000000 884.b80: *00000000022a0000-00000000022abfff 0x0004/0x0004 0x0020000 884.b80: 00000000022ac000-00000000022affff 0x0000/0x0004 0x0020000 884.b80: *00000000022b0000-00000000022bdfff 0x0000/0x0004 0x0020000 884.b80: 00000000022be000-00000000024aefff 0x0004/0x0004 0x0020000 884.b80: 00000000024af000-00000000024affff 0x0000/0x0004 0x0020000 884.b80: *00000000024b0000-00000000024b1fff 0x0004/0x0004 0x0020000 884.b80: 00000000024b2000-00000000024e1fff 0x0000/0x0004 0x0020000 884.b80: 00000000024e2000-00000000024effff 0x0001/0x0000 0x0000000 884.b80: *00000000024f0000-000000000250cfff 0x0004/0x0004 0x0020000 884.b80: 000000000250d000-00000000025effff 0x0000/0x0004 0x0020000 884.b80: 00000000025f0000-0000000060ffffff 0x0001/0x0000 0x0000000 884.b80: *0000000061000000-0000000061000fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_sps.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 0000000061000000 LB 0x1000 (base 0000000061000000) - 'f_sps.dll' 884.b80: 0000000061001000-0000000061080fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_sps.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 0000000061001000 LB 0x80000 (base 0000000061000000) - 'f_sps.dll' 884.b80: 0000000061081000-00000000610b5fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_sps.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 0000000061081000 LB 0x35000 (base 0000000061000000) - 'f_sps.dll' 884.b80: 00000000610b6000-00000000610b7fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_sps.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00000000610b6000 LB 0x2000 (base 0000000061000000) - 'f_sps.dll' 884.b80: 00000000610b8000-00000000610bffff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_sps.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00000000610b8000 LB 0x8000 (base 0000000061000000) - 'f_sps.dll' 884.b80: 00000000610c0000-00000000610c5fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_sps.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00000000610c0000 LB 0x6000 (base 0000000061000000) - 'f_sps.dll' 884.b80: 00000000610c6000-00000000610ccfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_sps.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00000000610c6000 LB 0x7000 (base 0000000061000000) - 'f_sps.dll' 884.b80: 00000000610cd000-00000000611d4fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_sps.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00000000610cd000 LB 0x108000 (base 0000000061000000) - 'f_sps.dll' 884.b80: 00000000611d5000-00000000611dafff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_sps.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00000000611d5000 LB 0x6000 (base 0000000061000000) - 'f_sps.dll' 884.b80: 00000000611db000-000000007ffdffff 0x0001/0x0000 0x0000000 884.b80: *000000007ffe0000-000000007ffe0fff 0x0002/0x0002 0x0020000 884.b80: 000000007ffe1000-000000007ffe5fff 0x0001/0x0000 0x0000000 884.b80: *000000007ffe6000-000000007ffe6fff 0x0002/0x0002 0x0020000 884.b80: 000000007ffe7000-000000017fffffff 0x0001/0x0000 0x0000000 884.b80: *0000000180000000-0000000180000fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_nxa.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 0000000180000000 LB 0x1000 (base 0000000180000000) - 'f_nxa.dll' 884.b80: 0000000180001000-0000000180022fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_nxa.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 0000000180001000 LB 0x22000 (base 0000000180000000) - 'f_nxa.dll' 884.b80: 0000000180023000-0000000180034fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_nxa.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 0000000180023000 LB 0x12000 (base 0000000180000000) - 'f_nxa.dll' 884.b80: 0000000180035000-000000018003bfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_nxa.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 0000000180035000 LB 0x7000 (base 0000000180000000) - 'f_nxa.dll' 884.b80: 000000018003c000-000000018003ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Fasoo DRM\f_nxa.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 000000018003c000 LB 0x4000 (base 0000000180000000) - 'f_nxa.dll' 884.b80: 0000000180040000-00007ff41829ffff 0x0001/0x0000 0x0000000 884.b80: *00007ff4182a0000-00007ff4182a4fff 0x0002/0x0002 0x0040000 884.b80: 00007ff4182a5000-00007ff41839ffff 0x0000/0x0002 0x0040000 884.b80: *00007ff4183a0000-00007ff5183bffff 0x0000/0x0004 0x0020000 884.b80: *00007ff5183c0000-00007ff51a3bffff 0x0000/0x0004 0x0020000 884.b80: 00007ff51a3c0000-00007ff51a3c0fff 0x0004/0x0004 0x0020000 884.b80: 00007ff51a3c1000-00007ff51a3cffff 0x0001/0x0000 0x0000000 884.b80: *00007ff51a3d0000-00007ff51a3d0fff 0x0002/0x0002 0x0040000 884.b80: 00007ff51a3d1000-00007ff51a3dffff 0x0001/0x0000 0x0000000 884.b80: *00007ff51a3e0000-00007ff51a412fff 0x0002/0x0002 0x0040000 884.b80: 00007ff51a413000-00007ff60568ffff 0x0001/0x0000 0x0000000 884.b80: *00007ff605690000-00007ff605690fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605691000-00007ff605702fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605703000-00007ff605703fff 0x0080/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605704000-00007ff60574afff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff60574b000-00007ff60574dfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff60574e000-00007ff605750fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605751000-00007ff605753fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605754000-00007ff605754fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605755000-00007ff605756fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605757000-00007ff605757fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605758000-00007ff60579ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff6057a0000-00007ffabbecffff 0x0001/0x0000 0x0000000 884.b80: *00007ffabbed0000-00007ffabbed0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\f_im.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffabbed0000 LB 0x1000 (base 00007ffabbed0000) - 'f_im.dll' 884.b80: 00007ffabbed1000-00007ffabbeddfff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\f_im.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffabbed1000 LB 0xd000 (base 00007ffabbed0000) - 'f_im.dll' 884.b80: 00007ffabbede000-00007ffabbee1fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\f_im.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffabbede000 LB 0x4000 (base 00007ffabbed0000) - 'f_im.dll' 884.b80: 00007ffabbee2000-00007ffabbee2fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\f_im.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffabbee2000 LB 0x1000 (base 00007ffabbed0000) - 'f_im.dll' 884.b80: 00007ffabbee3000-00007ffabbee4fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\f_im.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffabbee3000 LB 0x2000 (base 00007ffabbed0000) - 'f_im.dll' 884.b80: 00007ffabbee5000-00007ffabbee8fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\f_im.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffabbee5000 LB 0x4000 (base 00007ffabbed0000) - 'f_im.dll' 884.b80: 00007ffabbee9000-00007ffabbee9fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\f_im.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffabbee9000 LB 0x1000 (base 00007ffabbed0000) - 'f_im.dll' 884.b80: 00007ffabbeea000-00007ffabbefafff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\f_im.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffabbeea000 LB 0x11000 (base 00007ffabbed0000) - 'f_im.dll' 884.b80: 00007ffabbefb000-00007ffabbefcfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\f_im.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffabbefb000 LB 0x2000 (base 00007ffabbed0000) - 'f_im.dll' 884.b80: 00007ffabbefd000-00007ffad48affff 0x0001/0x0000 0x0000000 884.b80: *00007ffad48b0000-00007ffad48b0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\winspool.drv 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad48b0000 LB 0x1000 (base 00007ffad48b0000) - 'winspool.drv' 884.b80: 00007ffad48b1000-00007ffad48fafff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\winspool.drv 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad48b1000 LB 0x4a000 (base 00007ffad48b0000) - 'winspool.drv' 884.b80: 00007ffad48fb000-00007ffad4919fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\winspool.drv 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad48fb000 LB 0x1f000 (base 00007ffad48b0000) - 'winspool.drv' 884.b80: 00007ffad491a000-00007ffad491bfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\winspool.drv 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad491a000 LB 0x2000 (base 00007ffad48b0000) - 'winspool.drv' 884.b80: 00007ffad491c000-00007ffad4938fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\winspool.drv 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad491c000 LB 0x1d000 (base 00007ffad48b0000) - 'winspool.drv' 884.b80: 00007ffad4939000-00007ffad8c7ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffad8c80000-00007ffad8c80fff 0x0040/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msimg32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad8c80000 LB 0x1000 (base 00007ffad8c80000) - 'msimg32.dll' 884.b80: 00007ffad8c81000-00007ffad8c81fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msimg32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad8c81000 LB 0x1000 (base 00007ffad8c80000) - 'msimg32.dll' 884.b80: 00007ffad8c82000-00007ffad8c82fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msimg32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad8c82000 LB 0x1000 (base 00007ffad8c80000) - 'msimg32.dll' 884.b80: 00007ffad8c83000-00007ffad8c83fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msimg32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad8c83000 LB 0x1000 (base 00007ffad8c80000) - 'msimg32.dll' 884.b80: 00007ffad8c84000-00007ffad8c86fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msimg32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffad8c84000 LB 0x3000 (base 00007ffad8c80000) - 'msimg32.dll' 884.b80: 00007ffad8c87000-00007ffae437ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffae4380000-00007ffae4380fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\version.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae4380000 LB 0x1000 (base 00007ffae4380000) - 'version.dll' 884.b80: 00007ffae4381000-00007ffae4383fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\version.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae4381000 LB 0x3000 (base 00007ffae4380000) - 'version.dll' 884.b80: 00007ffae4384000-00007ffae4385fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\version.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae4384000 LB 0x2000 (base 00007ffae4380000) - 'version.dll' 884.b80: 00007ffae4386000-00007ffae4386fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\version.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae4386000 LB 0x1000 (base 00007ffae4380000) - 'version.dll' 884.b80: 00007ffae4387000-00007ffae4389fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\version.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae4387000 LB 0x3000 (base 00007ffae4380000) - 'version.dll' 884.b80: 00007ffae438a000-00007ffae7c8ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffae7c90000-00007ffae7c90fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\propsys.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7c90000 LB 0x1000 (base 00007ffae7c90000) - 'propsys.dll' 884.b80: 00007ffae7c91000-00007ffae7d24fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\propsys.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7c91000 LB 0x94000 (base 00007ffae7c90000) - 'propsys.dll' 884.b80: 00007ffae7d25000-00007ffae7d6bfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\propsys.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7d25000 LB 0x47000 (base 00007ffae7c90000) - 'propsys.dll' 884.b80: 00007ffae7d6c000-00007ffae7d6dfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\propsys.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7d6c000 LB 0x2000 (base 00007ffae7c90000) - 'propsys.dll' 884.b80: 00007ffae7d6e000-00007ffae7d7efff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\propsys.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7d6e000 LB 0x11000 (base 00007ffae7c90000) - 'propsys.dll' 884.b80: 00007ffae7d7f000-00007ffae7ddffff 0x0001/0x0000 0x0000000 884.b80: *00007ffae7de0000-00007ffae7de0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\wtsapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7de0000 LB 0x1000 (base 00007ffae7de0000) - 'wtsapi32.dll' 884.b80: 00007ffae7de1000-00007ffae7de9fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\wtsapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7de1000 LB 0x9000 (base 00007ffae7de0000) - 'wtsapi32.dll' 884.b80: 00007ffae7dea000-00007ffae7dedfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\wtsapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7dea000 LB 0x4000 (base 00007ffae7de0000) - 'wtsapi32.dll' 884.b80: 00007ffae7dee000-00007ffae7deefff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\wtsapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7dee000 LB 0x1000 (base 00007ffae7de0000) - 'wtsapi32.dll' 884.b80: 00007ffae7def000-00007ffae7df2fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\wtsapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffae7def000 LB 0x4000 (base 00007ffae7de0000) - 'wtsapi32.dll' 884.b80: 00007ffae7df3000-00007ffaea34ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaea350000-00007ffaea350fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntmarta.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea350000 LB 0x1000 (base 00007ffaea350000) - 'ntmarta.dll' 884.b80: 00007ffaea351000-00007ffaea371fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntmarta.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea351000 LB 0x21000 (base 00007ffaea350000) - 'ntmarta.dll' 884.b80: 00007ffaea372000-00007ffaea379fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntmarta.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea372000 LB 0x8000 (base 00007ffaea350000) - 'ntmarta.dll' 884.b80: 00007ffaea37a000-00007ffaea37bfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntmarta.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea37a000 LB 0x2000 (base 00007ffaea350000) - 'ntmarta.dll' 884.b80: 00007ffaea37c000-00007ffaea380fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntmarta.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea37c000 LB 0x5000 (base 00007ffaea350000) - 'ntmarta.dll' 884.b80: 00007ffaea381000-00007ffaea87ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaea880000-00007ffaea880fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\IPHLPAPI.DLL 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea880000 LB 0x1000 (base 00007ffaea880000) - 'IPHLPAPI.DLL' 884.b80: 00007ffaea881000-00007ffaea8a9fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\IPHLPAPI.DLL 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea881000 LB 0x29000 (base 00007ffaea880000) - 'IPHLPAPI.DLL' 884.b80: 00007ffaea8aa000-00007ffaea8b3fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\IPHLPAPI.DLL 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea8aa000 LB 0xa000 (base 00007ffaea880000) - 'IPHLPAPI.DLL' 884.b80: 00007ffaea8b4000-00007ffaea8b4fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\IPHLPAPI.DLL 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea8b4000 LB 0x1000 (base 00007ffaea880000) - 'IPHLPAPI.DLL' 884.b80: 00007ffaea8b5000-00007ffaea8b9fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\IPHLPAPI.DLL 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaea8b5000 LB 0x5000 (base 00007ffaea880000) - 'IPHLPAPI.DLL' 884.b80: 00007ffaea8ba000-00007ffaeb31ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb320000-00007ffaeb320fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\umpdc.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb320000 LB 0x1000 (base 00007ffaeb320000) - 'umpdc.dll' 884.b80: 00007ffaeb321000-00007ffaeb328fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\umpdc.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb321000 LB 0x8000 (base 00007ffaeb320000) - 'umpdc.dll' 884.b80: 00007ffaeb329000-00007ffaeb32bfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\umpdc.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb329000 LB 0x3000 (base 00007ffaeb320000) - 'umpdc.dll' 884.b80: 00007ffaeb32c000-00007ffaeb32cfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\umpdc.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb32c000 LB 0x1000 (base 00007ffaeb320000) - 'umpdc.dll' 884.b80: 00007ffaeb32d000-00007ffaeb32ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\umpdc.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb32d000 LB 0x3000 (base 00007ffaeb320000) - 'umpdc.dll' 884.b80: *00007ffaeb330000-00007ffaeb330fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\powrprof.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb330000 LB 0x1000 (base 00007ffaeb330000) - 'powrprof.dll' 884.b80: 00007ffaeb331000-00007ffaeb341fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\powrprof.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb331000 LB 0x11000 (base 00007ffaeb330000) - 'powrprof.dll' 884.b80: 00007ffaeb342000-00007ffaeb34bfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\powrprof.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb342000 LB 0xa000 (base 00007ffaeb330000) - 'powrprof.dll' 884.b80: 00007ffaeb34c000-00007ffaeb34cfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\powrprof.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb34c000 LB 0x1000 (base 00007ffaeb330000) - 'powrprof.dll' 884.b80: 00007ffaeb34d000-00007ffaeb379fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\powrprof.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb34d000 LB 0x2d000 (base 00007ffaeb330000) - 'powrprof.dll' 884.b80: 00007ffaeb37a000-00007ffaeb37ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb380000-00007ffaeb380fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel.appcore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb380000 LB 0x1000 (base 00007ffaeb380000) - 'kernel.appcore.dll' 884.b80: 00007ffaeb381000-00007ffaeb384fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel.appcore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb381000 LB 0x4000 (base 00007ffaeb380000) - 'kernel.appcore.dll' 884.b80: 00007ffaeb385000-00007ffaeb38bfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel.appcore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb385000 LB 0x7000 (base 00007ffaeb380000) - 'kernel.appcore.dll' 884.b80: 00007ffaeb38c000-00007ffaeb38cfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel.appcore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb38c000 LB 0x1000 (base 00007ffaeb380000) - 'kernel.appcore.dll' 884.b80: 00007ffaeb38d000-00007ffaeb390fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel.appcore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb38d000 LB 0x4000 (base 00007ffaeb380000) - 'kernel.appcore.dll' 884.b80: 00007ffaeb391000-00007ffaeb39ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb3a0000-00007ffaeb3a0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\profapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb3a0000 LB 0x1000 (base 00007ffaeb3a0000) - 'profapi.dll' 884.b80: 00007ffaeb3a1000-00007ffaeb3b0fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\profapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb3a1000 LB 0x10000 (base 00007ffaeb3a0000) - 'profapi.dll' 884.b80: 00007ffaeb3b1000-00007ffaeb3b7fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\profapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb3b1000 LB 0x7000 (base 00007ffaeb3a0000) - 'profapi.dll' 884.b80: 00007ffaeb3b8000-00007ffaeb3b8fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\profapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb3b8000 LB 0x1000 (base 00007ffaeb3a0000) - 'profapi.dll' 884.b80: 00007ffaeb3b9000-00007ffaeb3bdfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\profapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb3b9000 LB 0x5000 (base 00007ffaeb3a0000) - 'profapi.dll' 884.b80: 00007ffaeb3be000-00007ffaeb48ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb490000-00007ffaeb490fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcp_win.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb490000 LB 0x1000 (base 00007ffaeb490000) - 'msvcp_win.dll' 884.b80: 00007ffaeb491000-00007ffaeb4e4fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcp_win.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb491000 LB 0x54000 (base 00007ffaeb490000) - 'msvcp_win.dll' 884.b80: 00007ffaeb4e5000-00007ffaeb521fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcp_win.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb4e5000 LB 0x3d000 (base 00007ffaeb490000) - 'msvcp_win.dll' 884.b80: 00007ffaeb522000-00007ffaeb522fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcp_win.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb522000 LB 0x1000 (base 00007ffaeb490000) - 'msvcp_win.dll' 884.b80: 00007ffaeb523000-00007ffaeb525fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcp_win.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb523000 LB 0x3000 (base 00007ffaeb490000) - 'msvcp_win.dll' 884.b80: 00007ffaeb526000-00007ffaeb52dfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcp_win.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb526000 LB 0x8000 (base 00007ffaeb490000) - 'msvcp_win.dll' 884.b80: 00007ffaeb52e000-00007ffaeb52ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb530000-00007ffaeb530fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cfgmgr32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb530000 LB 0x1000 (base 00007ffaeb530000) - 'cfgmgr32.dll' 884.b80: 00007ffaeb531000-00007ffaeb563fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cfgmgr32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb531000 LB 0x33000 (base 00007ffaeb530000) - 'cfgmgr32.dll' 884.b80: 00007ffaeb564000-00007ffaeb571fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cfgmgr32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb564000 LB 0xe000 (base 00007ffaeb530000) - 'cfgmgr32.dll' 884.b80: 00007ffaeb572000-00007ffaeb572fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cfgmgr32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb572000 LB 0x1000 (base 00007ffaeb530000) - 'cfgmgr32.dll' 884.b80: 00007ffaeb573000-00007ffaeb573fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cfgmgr32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb573000 LB 0x1000 (base 00007ffaeb530000) - 'cfgmgr32.dll' 884.b80: 00007ffaeb574000-00007ffaeb579fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cfgmgr32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb574000 LB 0x6000 (base 00007ffaeb530000) - 'cfgmgr32.dll' 884.b80: 00007ffaeb57a000-00007ffaeb57ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb580000-00007ffaeb580fff 0x0040/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\KernelBase.dll 884.b80: 00007ffaeb581000-00007ffaeb687fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\KernelBase.dll 884.b80: 00007ffaeb688000-00007ffaeb7eafff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\KernelBase.dll 884.b80: 00007ffaeb7eb000-00007ffaeb7eefff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\KernelBase.dll 884.b80: 00007ffaeb7ef000-00007ffaeb7effff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\KernelBase.dll 884.b80: 00007ffaeb7f0000-00007ffaeb825fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\KernelBase.dll 884.b80: 00007ffaeb826000-00007ffaeb82ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb830000-00007ffaeb830fff 0x0040/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\win32u.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb830000 LB 0x1000 (base 00007ffaeb830000) - 'win32u.dll' 884.b80: 00007ffaeb831000-00007ffaeb83afff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\win32u.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb831000 LB 0xa000 (base 00007ffaeb830000) - 'win32u.dll' 884.b80: 00007ffaeb83b000-00007ffaeb849fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\win32u.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb83b000 LB 0xf000 (base 00007ffaeb830000) - 'win32u.dll' 884.b80: 00007ffaeb84a000-00007ffaeb84afff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\win32u.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb84a000 LB 0x1000 (base 00007ffaeb830000) - 'win32u.dll' 884.b80: 00007ffaeb84b000-00007ffaeb850fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\win32u.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb84b000 LB 0x6000 (base 00007ffaeb830000) - 'win32u.dll' 884.b80: 00007ffaeb851000-00007ffaeb85ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb860000-00007ffaeb860fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ucrtbase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb860000 LB 0x1000 (base 00007ffaeb860000) - 'ucrtbase.dll' 884.b80: 00007ffaeb861000-00007ffaeb911fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ucrtbase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb861000 LB 0xb1000 (base 00007ffaeb860000) - 'ucrtbase.dll' 884.b80: 00007ffaeb912000-00007ffaeb949fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ucrtbase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb912000 LB 0x38000 (base 00007ffaeb860000) - 'ucrtbase.dll' 884.b80: 00007ffaeb94a000-00007ffaeb94cfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ucrtbase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb94a000 LB 0x3000 (base 00007ffaeb860000) - 'ucrtbase.dll' 884.b80: 00007ffaeb94d000-00007ffaeb959fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ucrtbase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb94d000 LB 0xd000 (base 00007ffaeb860000) - 'ucrtbase.dll' 884.b80: 00007ffaeb95a000-00007ffaeb95ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb960000-00007ffaeb960fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcrypt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb960000 LB 0x1000 (base 00007ffaeb960000) - 'bcrypt.dll' 884.b80: 00007ffaeb961000-00007ffaeb979fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcrypt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb961000 LB 0x19000 (base 00007ffaeb960000) - 'bcrypt.dll' 884.b80: 00007ffaeb97a000-00007ffaeb97ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcrypt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb97a000 LB 0x6000 (base 00007ffaeb960000) - 'bcrypt.dll' 884.b80: 00007ffaeb980000-00007ffaeb980fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcrypt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb980000 LB 0x1000 (base 00007ffaeb960000) - 'bcrypt.dll' 884.b80: 00007ffaeb981000-00007ffaeb985fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcrypt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb981000 LB 0x5000 (base 00007ffaeb960000) - 'bcrypt.dll' 884.b80: 00007ffaeb986000-00007ffaeb98ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeb990000-00007ffaeb990fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\windows.storage.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb990000 LB 0x1000 (base 00007ffaeb990000) - 'windows.storage.dll' 884.b80: 00007ffaeb991000-00007ffaebed1fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\windows.storage.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeb991000 LB 0x541000 (base 00007ffaeb990000) - 'windows.storage.dll' 884.b80: 00007ffaebed2000-00007ffaec08cfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\windows.storage.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaebed2000 LB 0x1bb000 (base 00007ffaeb990000) - 'windows.storage.dll' 884.b80: 00007ffaec08d000-00007ffaec099fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\windows.storage.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec08d000 LB 0xd000 (base 00007ffaeb990000) - 'windows.storage.dll' 884.b80: 00007ffaec09a000-00007ffaec09afff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\windows.storage.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec09a000 LB 0x1000 (base 00007ffaeb990000) - 'windows.storage.dll' 884.b80: 00007ffaec09b000-00007ffaec10afff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\windows.storage.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec09b000 LB 0x70000 (base 00007ffaeb990000) - 'windows.storage.dll' 884.b80: 00007ffaec10b000-00007ffaec2cffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaec2d0000-00007ffaec2d0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcryptprimitives.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec2d0000 LB 0x1000 (base 00007ffaec2d0000) - 'bcryptprimitives.dll' 884.b80: 00007ffaec2d1000-00007ffaec337fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcryptprimitives.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec2d1000 LB 0x67000 (base 00007ffaec2d0000) - 'bcryptprimitives.dll' 884.b80: 00007ffaec338000-00007ffaec34dfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcryptprimitives.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec338000 LB 0x16000 (base 00007ffaec2d0000) - 'bcryptprimitives.dll' 884.b80: 00007ffaec34e000-00007ffaec34efff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcryptprimitives.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec34e000 LB 0x1000 (base 00007ffaec2d0000) - 'bcryptprimitives.dll' 884.b80: 00007ffaec34f000-00007ffaec353fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\bcryptprimitives.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec34f000 LB 0x5000 (base 00007ffaec2d0000) - 'bcryptprimitives.dll' 884.b80: 00007ffaec354000-00007ffaec35ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaec360000-00007ffaec360fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32full.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec360000 LB 0x1000 (base 00007ffaec360000) - 'gdi32full.dll' 884.b80: 00007ffaec361000-00007ffaec433fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32full.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec361000 LB 0xd3000 (base 00007ffaec360000) - 'gdi32full.dll' 884.b80: 00007ffaec434000-00007ffaec4d5fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32full.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec434000 LB 0xa2000 (base 00007ffaec360000) - 'gdi32full.dll' 884.b80: 00007ffaec4d6000-00007ffaec4d9fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32full.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec4d6000 LB 0x4000 (base 00007ffaec360000) - 'gdi32full.dll' 884.b80: 00007ffaec4da000-00007ffaec4dafff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32full.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec4da000 LB 0x1000 (base 00007ffaec360000) - 'gdi32full.dll' 884.b80: 00007ffaec4db000-00007ffaec4f7fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32full.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec4db000 LB 0x1d000 (base 00007ffaec360000) - 'gdi32full.dll' 884.b80: 00007ffaec4f8000-00007ffaec4fffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaec500000-00007ffaec500fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cryptsp.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec500000 LB 0x1000 (base 00007ffaec500000) - 'cryptsp.dll' 884.b80: 00007ffaec501000-00007ffaec50bfff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cryptsp.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec501000 LB 0xb000 (base 00007ffaec500000) - 'cryptsp.dll' 884.b80: 00007ffaec50c000-00007ffaec511fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cryptsp.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec50c000 LB 0x6000 (base 00007ffaec500000) - 'cryptsp.dll' 884.b80: 00007ffaec512000-00007ffaec512fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cryptsp.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec512000 LB 0x1000 (base 00007ffaec500000) - 'cryptsp.dll' 884.b80: 00007ffaec513000-00007ffaec516fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\cryptsp.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec513000 LB 0x4000 (base 00007ffaec500000) - 'cryptsp.dll' 884.b80: 00007ffaec517000-00007ffaec6cffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaec6d0000-00007ffaec6d0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\rpcrt4.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec6d0000 LB 0x1000 (base 00007ffaec6d0000) - 'rpcrt4.dll' 884.b80: 00007ffaec6d1000-00007ffaec7aefff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\rpcrt4.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec6d1000 LB 0xde000 (base 00007ffaec6d0000) - 'rpcrt4.dll' 884.b80: 00007ffaec7af000-00007ffaec7d8fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\rpcrt4.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec7af000 LB 0x2a000 (base 00007ffaec6d0000) - 'rpcrt4.dll' 884.b80: 00007ffaec7d9000-00007ffaec7dafff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\rpcrt4.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec7d9000 LB 0x2000 (base 00007ffaec6d0000) - 'rpcrt4.dll' 884.b80: 00007ffaec7db000-00007ffaec7eefff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\rpcrt4.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec7db000 LB 0x14000 (base 00007ffaec6d0000) - 'rpcrt4.dll' 884.b80: 00007ffaec7ef000-00007ffaec7effff 0x0001/0x0000 0x0000000 884.b80: *00007ffaec7f0000-00007ffaec7f0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\combase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec7f0000 LB 0x1000 (base 00007ffaec7f0000) - 'combase.dll' 884.b80: 00007ffaec7f1000-00007ffaeca0ffff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\combase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaec7f1000 LB 0x21f000 (base 00007ffaec7f0000) - 'combase.dll' 884.b80: 00007ffaeca10000-00007ffaecad2fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\combase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeca10000 LB 0xc3000 (base 00007ffaec7f0000) - 'combase.dll' 884.b80: 00007ffaecad3000-00007ffaecad8fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\combase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecad3000 LB 0x6000 (base 00007ffaec7f0000) - 'combase.dll' 884.b80: 00007ffaecad9000-00007ffaecb25fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\combase.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecad9000 LB 0x4d000 (base 00007ffaec7f0000) - 'combase.dll' 884.b80: 00007ffaecb26000-00007ffaecb2ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaecb30000-00007ffaecb30fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\sechost.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecb30000 LB 0x1000 (base 00007ffaecb30000) - 'sechost.dll' 884.b80: 00007ffaecb31000-00007ffaecb91fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\sechost.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecb31000 LB 0x61000 (base 00007ffaecb30000) - 'sechost.dll' 884.b80: 00007ffaecb92000-00007ffaecbb8fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\sechost.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecb92000 LB 0x27000 (base 00007ffaecb30000) - 'sechost.dll' 884.b80: 00007ffaecbb9000-00007ffaecbb9fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\sechost.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecbb9000 LB 0x1000 (base 00007ffaecb30000) - 'sechost.dll' 884.b80: 00007ffaecbba000-00007ffaecbbafff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\sechost.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecbba000 LB 0x1000 (base 00007ffaecb30000) - 'sechost.dll' 884.b80: 00007ffaecbbb000-00007ffaecbbcfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\sechost.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecbbb000 LB 0x2000 (base 00007ffaecb30000) - 'sechost.dll' 884.b80: 00007ffaecbbd000-00007ffaecbc6fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\sechost.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecbbd000 LB 0xa000 (base 00007ffaecb30000) - 'sechost.dll' 884.b80: 00007ffaecbc7000-00007ffaecbcffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaecbd0000-00007ffaecbd0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ole32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecbd0000 LB 0x1000 (base 00007ffaecbd0000) - 'ole32.dll' 884.b80: 00007ffaecbd1000-00007ffaecc9afff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ole32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecbd1000 LB 0xca000 (base 00007ffaecbd0000) - 'ole32.dll' 884.b80: 00007ffaecc9b000-00007ffaeccf7fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ole32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecc9b000 LB 0x5d000 (base 00007ffaecbd0000) - 'ole32.dll' 884.b80: 00007ffaeccf8000-00007ffaeccf9fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ole32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeccf8000 LB 0x2000 (base 00007ffaecbd0000) - 'ole32.dll' 884.b80: 00007ffaeccfa000-00007ffaecd26fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ole32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeccfa000 LB 0x2d000 (base 00007ffaecbd0000) - 'ole32.dll' 884.b80: 00007ffaecd27000-00007ffaecdcffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaecdd0000-00007ffaecddffff 0x0020/0x0040 0x0020000 !! 884.b80: *00007ffaecde0000-00007ffaecde0fff 0x0040/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\user32.dll 884.b80: 00007ffaecde1000-00007ffaece66fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\user32.dll 884.b80: 00007ffaece67000-00007ffaece86fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\user32.dll 884.b80: 00007ffaece87000-00007ffaece88fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\user32.dll 884.b80: 00007ffaece89000-00007ffaecf73fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\user32.dll 884.b80: 00007ffaecf74000-00007ffaecfeffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaecff0000-00007ffaecff0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcrt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecff0000 LB 0x1000 (base 00007ffaecff0000) - 'msvcrt.dll' 884.b80: 00007ffaecff1000-00007ffaed065fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcrt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaecff1000 LB 0x75000 (base 00007ffaecff0000) - 'msvcrt.dll' 884.b80: 00007ffaed066000-00007ffaed07efff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcrt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed066000 LB 0x19000 (base 00007ffaecff0000) - 'msvcrt.dll' 884.b80: 00007ffaed07f000-00007ffaed080fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcrt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed07f000 LB 0x2000 (base 00007ffaecff0000) - 'msvcrt.dll' 884.b80: 00007ffaed081000-00007ffaed083fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcrt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed081000 LB 0x3000 (base 00007ffaecff0000) - 'msvcrt.dll' 884.b80: 00007ffaed084000-00007ffaed085fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcrt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed084000 LB 0x2000 (base 00007ffaecff0000) - 'msvcrt.dll' 884.b80: 00007ffaed086000-00007ffaed086fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcrt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed086000 LB 0x1000 (base 00007ffaecff0000) - 'msvcrt.dll' 884.b80: 00007ffaed087000-00007ffaed08dfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\msvcrt.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed087000 LB 0x7000 (base 00007ffaecff0000) - 'msvcrt.dll' 884.b80: 00007ffaed08e000-00007ffaed08ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaed090000-00007ffaed090fff 0x0040/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel32.dll 884.b80: 00007ffaed091000-00007ffaed105fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel32.dll 884.b80: 00007ffaed106000-00007ffaed137fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel32.dll 884.b80: 00007ffaed138000-00007ffaed138fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel32.dll 884.b80: 00007ffaed139000-00007ffaed139fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel32.dll 884.b80: 00007ffaed13a000-00007ffaed141fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\kernel32.dll 884.b80: 00007ffaed142000-00007ffaed14ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaed150000-00007ffaed150fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\psapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed150000 LB 0x1000 (base 00007ffaed150000) - 'psapi.dll' 884.b80: 00007ffaed151000-00007ffaed151fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\psapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed151000 LB 0x1000 (base 00007ffaed150000) - 'psapi.dll' 884.b80: 00007ffaed152000-00007ffaed153fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\psapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed152000 LB 0x2000 (base 00007ffaed150000) - 'psapi.dll' 884.b80: 00007ffaed154000-00007ffaed154fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\psapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed154000 LB 0x1000 (base 00007ffaed150000) - 'psapi.dll' 884.b80: 00007ffaed155000-00007ffaed157fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\psapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed155000 LB 0x3000 (base 00007ffaed150000) - 'psapi.dll' 884.b80: 00007ffaed158000-00007ffaed22ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaed230000-00007ffaed230fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shell32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed230000 LB 0x1000 (base 00007ffaed230000) - 'shell32.dll' 884.b80: 00007ffaed231000-00007ffaed78efff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shell32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed231000 LB 0x55e000 (base 00007ffaed230000) - 'shell32.dll' 884.b80: 00007ffaed78f000-00007ffaed8a8fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shell32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed78f000 LB 0x11a000 (base 00007ffaed230000) - 'shell32.dll' 884.b80: 00007ffaed8a9000-00007ffaed8affff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shell32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed8a9000 LB 0x7000 (base 00007ffaed230000) - 'shell32.dll' 884.b80: 00007ffaed8b0000-00007ffaed8b1fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shell32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed8b0000 LB 0x2000 (base 00007ffaed230000) - 'shell32.dll' 884.b80: 00007ffaed8b2000-00007ffaed916fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shell32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed8b2000 LB 0x65000 (base 00007ffaed230000) - 'shell32.dll' 884.b80: 00007ffaed917000-00007ffaed99ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaed9a0000-00007ffaed9a0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\SHCore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed9a0000 LB 0x1000 (base 00007ffaed9a0000) - 'SHCore.dll' 884.b80: 00007ffaed9a1000-00007ffaeda11fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\SHCore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaed9a1000 LB 0x71000 (base 00007ffaed9a0000) - 'SHCore.dll' 884.b80: 00007ffaeda12000-00007ffaeda37fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\SHCore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda12000 LB 0x26000 (base 00007ffaed9a0000) - 'SHCore.dll' 884.b80: 00007ffaeda38000-00007ffaeda39fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\SHCore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda38000 LB 0x2000 (base 00007ffaed9a0000) - 'SHCore.dll' 884.b80: 00007ffaeda3a000-00007ffaeda48fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\SHCore.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda3a000 LB 0xf000 (base 00007ffaed9a0000) - 'SHCore.dll' 884.b80: 00007ffaeda49000-00007ffaeda4ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeda50000-00007ffaeda50fff 0x0040/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda50000 LB 0x1000 (base 00007ffaeda50000) - 'gdi32.dll' 884.b80: 00007ffaeda51000-00007ffaeda5cfff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda51000 LB 0xc000 (base 00007ffaeda50000) - 'gdi32.dll' 884.b80: 00007ffaeda5d000-00007ffaeda6ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda5d000 LB 0x13000 (base 00007ffaeda50000) - 'gdi32.dll' 884.b80: 00007ffaeda70000-00007ffaeda70fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda70000 LB 0x1000 (base 00007ffaeda50000) - 'gdi32.dll' 884.b80: 00007ffaeda71000-00007ffaeda75fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\gdi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda71000 LB 0x5000 (base 00007ffaeda50000) - 'gdi32.dll' 884.b80: 00007ffaeda76000-00007ffaeda7ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaeda80000-00007ffaeda80fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shlwapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda80000 LB 0x1000 (base 00007ffaeda80000) - 'shlwapi.dll' 884.b80: 00007ffaeda81000-00007ffaedaaafff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shlwapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaeda81000 LB 0x2a000 (base 00007ffaeda80000) - 'shlwapi.dll' 884.b80: 00007ffaedaab000-00007ffaedacafff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shlwapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedaab000 LB 0x20000 (base 00007ffaeda80000) - 'shlwapi.dll' 884.b80: 00007ffaedacb000-00007ffaedacbfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shlwapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedacb000 LB 0x1000 (base 00007ffaeda80000) - 'shlwapi.dll' 884.b80: 00007ffaedacc000-00007ffaedad1fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\shlwapi.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedacc000 LB 0x6000 (base 00007ffaeda80000) - 'shlwapi.dll' 884.b80: 00007ffaedad2000-00007ffaedafffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaedb00000-00007ffaedb00fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\advapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedb00000 LB 0x1000 (base 00007ffaedb00000) - 'advapi32.dll' 884.b80: 00007ffaedb01000-00007ffaedb5ffff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\advapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedb01000 LB 0x5f000 (base 00007ffaedb00000) - 'advapi32.dll' 884.b80: 00007ffaedb60000-00007ffaedb94fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\advapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedb60000 LB 0x35000 (base 00007ffaedb00000) - 'advapi32.dll' 884.b80: 00007ffaedb95000-00007ffaedb95fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\advapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedb95000 LB 0x1000 (base 00007ffaedb00000) - 'advapi32.dll' 884.b80: 00007ffaedb96000-00007ffaedb96fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\advapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedb96000 LB 0x1000 (base 00007ffaedb00000) - 'advapi32.dll' 884.b80: 00007ffaedb97000-00007ffaedb98fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\advapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedb97000 LB 0x2000 (base 00007ffaedb00000) - 'advapi32.dll' 884.b80: 00007ffaedb99000-00007ffaedb99fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\advapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedb99000 LB 0x1000 (base 00007ffaedb00000) - 'advapi32.dll' 884.b80: 00007ffaedb9a000-00007ffaedba2fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\advapi32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedb9a000 LB 0x9000 (base 00007ffaedb00000) - 'advapi32.dll' 884.b80: 00007ffaedba3000-00007ffaedbaffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaedbb0000-00007ffaedbb0fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\oleaut32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedbb0000 LB 0x1000 (base 00007ffaedbb0000) - 'oleaut32.dll' 884.b80: 00007ffaedbb1000-00007ffaedc3dfff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\oleaut32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedbb1000 LB 0x8d000 (base 00007ffaedbb0000) - 'oleaut32.dll' 884.b80: 00007ffaedc3e000-00007ffaedc63fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\oleaut32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedc3e000 LB 0x26000 (base 00007ffaedbb0000) - 'oleaut32.dll' 884.b80: 00007ffaedc64000-00007ffaedc66fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\oleaut32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedc64000 LB 0x3000 (base 00007ffaedbb0000) - 'oleaut32.dll' 884.b80: 00007ffaedc67000-00007ffaedc74fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\oleaut32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaedc67000 LB 0xe000 (base 00007ffaedbb0000) - 'oleaut32.dll' 884.b80: 00007ffaedc75000-00007ffaee25ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaee260000-00007ffaee260fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\imm32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaee260000 LB 0x1000 (base 00007ffaee260000) - 'imm32.dll' 884.b80: 00007ffaee261000-00007ffaee27cfff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\imm32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaee261000 LB 0x1c000 (base 00007ffaee260000) - 'imm32.dll' 884.b80: 00007ffaee27d000-00007ffaee283fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\imm32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaee27d000 LB 0x7000 (base 00007ffaee260000) - 'imm32.dll' 884.b80: 00007ffaee284000-00007ffaee284fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\imm32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaee284000 LB 0x1000 (base 00007ffaee260000) - 'imm32.dll' 884.b80: 00007ffaee285000-00007ffaee28dfff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\imm32.dll 884.b80: supHardNtVpScanVirtualMemory: Ignoring unknown mem at 00007ffaee285000 LB 0x9000 (base 00007ffaee260000) - 'imm32.dll' 884.b80: 00007ffaee28e000-00007ffaee47ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaee480000-00007ffaee480fff 0x0040/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee481000-00007ffaee597fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee598000-00007ffaee5defff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5df000-00007ffaee5dffff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5e0000-00007ffaee5e1fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5e2000-00007ffaee5eafff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5eb000-00007ffaee66ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee670000-00007ffffffeffff 0x0001/0x0000 0x0000000 884.b80: kernel32.dll: timestamp 0xbba1b5fe (rc=VINF_SUCCESS) 884.b80: user32.dll: timestamp 0xbcb1fcd3 (rc=VINF_SUCCESS) 884.b80: kernelbase.dll: timestamp 0x62b4f97e (rc=VINF_SUCCESS) 884.b80: VBoxHeadless.exe: timestamp 0x5ebc4e33 (rc=VINF_SUCCESS) 884.b80: '\Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe' has no imports 884.b80: '\Device\HarddiskVolume3\Windows\System32\ntdll.dll' has no imports 884.b80: ntdll.dll: Differences in section #0 (headers) between file and memory: 884.b80: 00007ffaee48001c / 0x000001c: 00 != 44 884.b80: 00007ffaee48001d / 0x000001d: 00 != 65 884.b80: 00007ffaee48001e / 0x000001e: 00 != 74 884.b80: 00007ffaee48001f / 0x000001f: 00 != 6f 884.b80: 00007ffaee480020 / 0x0000020: 00 != 75 884.b80: 00007ffaee480021 / 0x0000021: 00 != 72 884.b80: 00007ffaee480022 / 0x0000022: 00 != 73 884.b80: 00007ffaee480023 / 0x0000023: 00 != 21 884.b80: Restored 0x400 bytes of original file content at 00007ffaee480000 884.b80: ntdll.dll: Differences in section #0 (headers) between file and memory: 884.b80: 00007ffaee480ff0 / 0x0000ff0: 00 != 7a 884.b80: 00007ffaee480ff1 / 0x0000ff1: 00 != 9c 884.b80: 00007ffaee480ff2 / 0x0000ff2: 00 != 77 884.b80: 00007ffaee480ff3 / 0x0000ff3: 00 != b2 884.b80: 00007ffaee480ff4 / 0x0000ff4: 00 != b9 884.b80: 00007ffaee480ff5 / 0x0000ff5: 00 != 32 884.b80: 00007ffaee480ff6 / 0x0000ff6: 00 != d2 884.b80: 00007ffaee480ff7 / 0x0000ff7: 00 != af 884.b80: 00007ffaee480ff8 / 0x0000ff8: 00 != 24 884.b80: 00007ffaee480ff9 / 0x0000ff9: 00 != 68 884.b80: 00007ffaee480ffa / 0x0000ffa: 00 != 39 884.b80: 00007ffaee480ffb / 0x0000ffb: 00 != 47 884.b80: Restored 0xc00 bytes of original file content at 00007ffaee480400 884.b80: ntdll.dll: Differences in section #1 (.text) between file and memory: 884.b80: 00007ffaee520520 / 0x00a0520: 4c != e9 884.b80: 00007ffaee520521 / 0x00a0521: 8b != 83 884.b80: 00007ffaee520522 / 0x00a0522: d1 != 00 884.b80: 00007ffaee520523 / 0x00a0523: b8 != 8b 884.b80: 00007ffaee520524 / 0x00a0524: b5 != fe 884.b80: 00007ffaee520525 / 0x00a0525: 01 != cc 884.b80: 00007ffaee520526 / 0x00a0526: 00 != cc 884.b80: 00007ffaee520527 / 0x00a0527: 00 != cc 884.b80: Restored 0xa92 bytes of original file content at 00007ffaee52004e 884.b80: kernel32.dll: Differences in section #0 (headers) between file and memory: 884.b80: 00007ffaed09001c / 0x000001c: 00 != 44 884.b80: 00007ffaed09001d / 0x000001d: 00 != 65 884.b80: 00007ffaed09001e / 0x000001e: 00 != 74 884.b80: 00007ffaed09001f / 0x000001f: 00 != 6f 884.b80: 00007ffaed090020 / 0x0000020: 00 != 75 884.b80: 00007ffaed090021 / 0x0000021: 00 != 72 884.b80: 00007ffaed090022 / 0x0000022: 00 != 73 884.b80: 00007ffaed090023 / 0x0000023: 00 != 21 884.b80: Restored 0x400 bytes of original file content at 00007ffaed090000 884.b80: kernel32.dll: Differences in section #0 (headers) between file and memory: 884.b80: 00007ffaed090ff0 / 0x0000ff0: 00 != 7a 884.b80: 00007ffaed090ff1 / 0x0000ff1: 00 != 9c 884.b80: 00007ffaed090ff2 / 0x0000ff2: 00 != 77 884.b80: 00007ffaed090ff3 / 0x0000ff3: 00 != b2 884.b80: 00007ffaed090ff4 / 0x0000ff4: 00 != b9 884.b80: 00007ffaed090ff5 / 0x0000ff5: 00 != 32 884.b80: 00007ffaed090ff6 / 0x0000ff6: 00 != d3 884.b80: 00007ffaed090ff7 / 0x0000ff7: 00 != af 884.b80: 00007ffaed090ff8 / 0x0000ff8: 00 != 24 884.b80: 00007ffaed090ff9 / 0x0000ff9: 00 != 68 884.b80: 00007ffaed090ffa / 0x0000ffa: 00 != 39 884.b80: 00007ffaed090ffb / 0x0000ffb: 00 != 47 884.b80: Restored 0xc00 bytes of original file content at 00007ffaed090400 884.b80: kernel32.dll: Differences in section #1 (.text) between file and memory: 884.b80: 00007ffaed0aa1f0 / 0x001a1f0: 48 != e9 884.b80: 00007ffaed0aa1f1 / 0x001a1f1: ff != 43 884.b80: 00007ffaed0aa1f2 / 0x001a1f2: 25 != 63 884.b80: 00007ffaed0aa1f3 / 0x001a1f3: 01 != d2 884.b80: 00007ffaed0aa1f4 / 0x001a1f4: e4 != ff 884.b80: 00007ffaed0aa1f5 / 0x001a1f5: 05 != cc 884.b80: 00007ffaed0aa1f6 / 0x001a1f6: 00 != cc 884.b80: Restored 0x2000 bytes of original file content at 00007ffaed0a9000 884.b80: kernel32.dll: Differences in section #1 (.text) between file and memory: 884.b80: 00007ffaed0aee30 / 0x001ee30: 48 != e9 884.b80: 00007ffaed0aee31 / 0x001ee31: ff != 3b 884.b80: 00007ffaed0aee32 / 0x001ee32: 25 != 17 884.b80: 00007ffaed0aee33 / 0x001ee33: 21 != d2 884.b80: 00007ffaed0aee34 / 0x001ee34: 97 != ff 884.b80: 00007ffaed0aee35 / 0x001ee35: 05 != cc 884.b80: 00007ffaed0aee36 / 0x001ee36: 00 != cc 884.b80: Restored 0x2000 bytes of original file content at 00007ffaed0ad000 884.b80: supR3HardenedWinVerifyCacheScheduleImports: Import todo: #0 'win32u.dll'. 884.b80: supR3HardenedWinVerifyCacheScheduleImports: Import todo: #34 'gdi32.dll'. 884.b80: supHardNtVpGetImport: Failed to find symbol 0xffffffff / 'NtUserRegisterClassExWOW' in 'win32u.dll': Unknown Status -610 (0xfffffd9e) 884.b80: Error (rc=-5629): 884.b80: RTLdrGetBits failed on image user32.dll: Unknown Status -610 (0xfffffd9e) 884.b80: supR3HardenedWinInit: SUPHARDNTVPKIND_SELF_PURIFICATION_LIMITED -> Unknown Status -5629 (0xffffea03), cFixes=7 884.b80: '\Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe' has no imports 884.b80: supHardenedWinVerifyImageByHandle: -> 0 (\Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe) 884.b80: supR3HardNtEnableThreadCreationEx: 884.b80: supR3HardNtDisableThreadCreation: pvLdrInitThunk=00007ffaee4f2040 pvNtTerminateThread=00007ffaee51d8f0 884.b80: supR3HardenedWinDoReSpawn(1): New child 35008.1e304 [kernel32]. 884.b80: supR3HardNtChildGatherData: PebBaseAddress=0000000000656000 cbPeb=0x388 884.b80: supR3HardNtPuChFindNtdll: uNtDllParentAddr=00007ffaee480000 uNtDllChildAddr=00007ffaee480000 884.b80: supR3HardenedWinSetupChildInit: uLdrInitThunk=00007ffaee4f2040 884.b80: supR3HardenedWinSetupChildInit: Start child. 884.b80: supR3HardNtChildWaitFor: Found expected request 0 (PurifyChildAndCloseHandles) after 1 ms. 884.b80: supR3HardNtChildPurify: Startup delay kludge #1/0: 261 ms, 29 sleeps 884.b80: supHardNtVpScanVirtualMemory: enmKind=CHILD_PURIFICATION 884.b80: *0000000000000000-00000000004dffff 0x0001/0x0000 0x0000000 884.b80: *00000000004e0000-00000000004fffff 0x0004/0x0004 0x0020000 884.b80: *0000000000500000-000000000051afff 0x0002/0x0002 0x0040000 884.b80: 000000000051b000-000000000051ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000520000-0000000000523fff 0x0002/0x0002 0x0040000 884.b80: 0000000000524000-000000000052ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000530000-0000000000531fff 0x0004/0x0004 0x0020000 884.b80: 0000000000532000-000000000054ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000550000-0000000000551fff 0x0040/0x0040 0x0020000 !! 884.b80: supHardNtVpFreeOrReplacePrivateExecMemory: Freeing exec mem at 0000000000550000 (LB 0x2000, 0000000000550000 LB 0x2000) 884.b80: 000000000250f430 0000: 40 57 48 83 ec 60 48 8d-44 24 40 66 c7 00 10 00 @WH..`H.D$@f.... 000000000250f440 0010: 66 c7 40 02 12 00 48 bb-60 00 55 00 00 00 00 00 f.@...H.`.U..... 000000000250f450 0020: 48 89 58 08 48 bb 72 00-55 00 00 00 00 00 48 89 H.X.H.r.U.....H. 000000000250f460 0030: 0b 4c 8d 4c 24 50 4c 8d-44 24 40 33 d2 33 c9 48 .L.L$PL.D$@3.3.H 000000000250f470 0040: c7 44 24 50 00 00 00 00-48 bb 00 16 4a ee fa 7f .D$P....H...J... 000000000250f480 0050: 00 00 e9 23 00 00 00 90-90 90 90 90 90 90 90 90 ...#............ 000000000250f490 0060: 66 00 5f 00 69 00 6d 00-2e 00 64 00 6c 00 6c 00 f._.i.m...d.l.l. 000000000250f4a0 0070: 00 00 00 00 00 00 00 00-00 00 ff d3 48 bb 72 00 ............H.r. 000000000250f4b0 0080: 55 00 00 00 00 00 48 8b-0b 48 83 c4 60 5f 48 b8 U.....H..H..`_H. 000000000250f4c0 0090: 00 d7 4e ee fa 7f 00 00-ff e0 90 00 00 00 00 00 ..N............. 000000000250f4d0 00a0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ **************** **** <ditto x 4> 000000000250f520 00f0: 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 884.b80: supHardNtVpFreeOrReplacePrivateExecMemory: Free attempt #1 succeeded: 0x0 [0000000000550000/0000000000550000 LB 0/0x2000] 884.b80: supHardNtVpFreeOrReplacePrivateExecMemory: QVM after free 0: [0000000000000000]/0000000000550000 LB 0xb0000 s=0x10000 ap=0x0 rp=0x3136432d00000001 884.b80: 0000000000552000-00000000005fffff 0x0001/0x0000 0x0000000 884.b80: *0000000000600000-0000000000655fff 0x0000/0x0004 0x0020000 884.b80: 0000000000656000-0000000000658fff 0x0004/0x0004 0x0020000 884.b80: 0000000000659000-00000000007fffff 0x0000/0x0004 0x0020000 884.b80: *0000000000800000-00000000008fafff 0x0000/0x0004 0x0020000 884.b80: 00000000008fb000-00000000008fdfff 0x0104/0x0004 0x0020000 884.b80: 00000000008fe000-00000000008fffff 0x0004/0x0004 0x0020000 884.b80: 0000000000900000-000000007ffdffff 0x0001/0x0000 0x0000000 884.b80: *000000007ffe0000-000000007ffe0fff 0x0002/0x0002 0x0020000 884.b80: 000000007ffe1000-000000007ffe5fff 0x0001/0x0000 0x0000000 884.b80: *000000007ffe6000-000000007ffe6fff 0x0002/0x0002 0x0020000 884.b80: 000000007ffe7000-00007ff5644bffff 0x0001/0x0000 0x0000000 884.b80: *00007ff5644c0000-00007ff5644c0fff 0x0002/0x0002 0x0040000 884.b80: 00007ff5644c1000-00007ff5644cffff 0x0001/0x0000 0x0000000 884.b80: *00007ff5644d0000-00007ff564502fff 0x0002/0x0002 0x0040000 884.b80: 00007ff564503000-00007ff60568ffff 0x0001/0x0000 0x0000000 884.b80: *00007ff605690000-00007ff605690fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605691000-00007ff605702fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605703000-00007ff605703fff 0x0080/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605704000-00007ff60574afff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff60574b000-00007ff60574bfff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff60574c000-00007ff60574cfff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff60574d000-00007ff605751fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605752000-00007ff605752fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605753000-00007ff605753fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605754000-00007ff605757fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605758000-00007ff60579ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff6057a0000-00007ffaee47ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaee480000-00007ffaee480fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee481000-00007ffaee597fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee598000-00007ffaee5defff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5df000-00007ffaee5eafff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5eb000-00007ffaee5f9fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5fa000-00007ffaee5fafff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5fb000-00007ffaee5fdfff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5fe000-00007ffaee66ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee670000-00007ffffffeffff 0x0001/0x0000 0x0000000 884.b80: supR3HardNtChildPurify: cFixes=1 g_fSupAdversaries=0x80000000 884.b80: supR3HardNtChildPurify: Startup delay kludge #1/1: 520 ms, 58 sleeps 884.b80: supHardNtVpScanVirtualMemory: enmKind=CHILD_PURIFICATION 884.b80: *0000000000000000-00000000004dffff 0x0001/0x0000 0x0000000 884.b80: *00000000004e0000-00000000004fffff 0x0004/0x0004 0x0020000 884.b80: *0000000000500000-000000000051afff 0x0002/0x0002 0x0040000 884.b80: 000000000051b000-000000000051ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000520000-0000000000523fff 0x0002/0x0002 0x0040000 884.b80: 0000000000524000-000000000052ffff 0x0001/0x0000 0x0000000 884.b80: *0000000000530000-0000000000531fff 0x0004/0x0004 0x0020000 884.b80: 0000000000532000-00000000005fffff 0x0001/0x0000 0x0000000 884.b80: *0000000000600000-0000000000655fff 0x0000/0x0004 0x0020000 884.b80: 0000000000656000-0000000000658fff 0x0004/0x0004 0x0020000 884.b80: 0000000000659000-00000000007fffff 0x0000/0x0004 0x0020000 884.b80: *0000000000800000-00000000008fafff 0x0000/0x0004 0x0020000 884.b80: 00000000008fb000-00000000008fdfff 0x0104/0x0004 0x0020000 884.b80: 00000000008fe000-00000000008fffff 0x0004/0x0004 0x0020000 884.b80: 0000000000900000-000000007ffdffff 0x0001/0x0000 0x0000000 884.b80: *000000007ffe0000-000000007ffe0fff 0x0002/0x0002 0x0020000 884.b80: 000000007ffe1000-000000007ffe5fff 0x0001/0x0000 0x0000000 884.b80: *000000007ffe6000-000000007ffe6fff 0x0002/0x0002 0x0020000 884.b80: 000000007ffe7000-00007ff5644bffff 0x0001/0x0000 0x0000000 884.b80: *00007ff5644c0000-00007ff5644c0fff 0x0002/0x0002 0x0040000 884.b80: 00007ff5644c1000-00007ff5644cffff 0x0001/0x0000 0x0000000 884.b80: *00007ff5644d0000-00007ff564502fff 0x0002/0x0002 0x0040000 884.b80: 00007ff564503000-00007ff60568ffff 0x0001/0x0000 0x0000000 884.b80: *00007ff605690000-00007ff605690fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605691000-00007ff605702fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605703000-00007ff605703fff 0x0040/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605704000-00007ff60574afff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff60574b000-00007ff605757fff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff605758000-00007ff60579ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: 00007ff6057a0000-00007ffaee47ffff 0x0001/0x0000 0x0000000 884.b80: *00007ffaee480000-00007ffaee480fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee481000-00007ffaee597fff 0x0020/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee598000-00007ffaee5defff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5df000-00007ffaee5e2fff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5e3000-00007ffaee5eafff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5eb000-00007ffaee5f9fff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5fa000-00007ffaee5fafff 0x0004/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5fb000-00007ffaee5fdfff 0x0008/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee5fe000-00007ffaee66ffff 0x0002/0x0080 0x1000000 \Device\HarddiskVolume3\Windows\System32\ntdll.dll 884.b80: 00007ffaee670000-00007ffffffeffff 0x0001/0x0000 0x0000000 884.b80: supR3HardNtChildPurify: Done after 803 ms and 1 fixes (loop #1). 35008.1e304: Log file opened: 5.2.42r137960 g_hStartupLog=0000000000000008 g_uNtVerCombined=0xa047bb00 35008.1e304: supR3HardenedVmProcessInit: uNtDllAddr=00007ffaee480000 g_uNtVerCombined=0xa047bb00 35008.1e304: ntdll.dll: timestamp 0x418df01d (rc=VINF_SUCCESS) 35008.1e304: New simple heap: #1 0000000000a00000 LB 0x400000 (for 2031616 allocation) 884.b80: supR3HardNtEnableThreadCreationEx: 35008.1e304: supR3HardenedWinInitAppBin(0x0): '\Device\HarddiskVolume3\Program Files\Oracle\VirtualBox' 35008.1e304: System32: \Device\HarddiskVolume3\Windows\System32 35008.1e304: WinSxS: \Device\HarddiskVolume3\Windows\WinSxS 35008.1e304: KnownDllPath: C:\WINDOWS\System32 35008.1e304: supR3HardenedVmProcessInit: Opening vboxdrv stub... 35008.1e304: supR3HardenedVmProcessInit: Restoring LdrInitializeThunk... 35008.1e304: supR3HardenedVmProcessInit: Returning to LdrInitializeThunk... 35008.1e304: Registered Dll notification callback with NTDLL. 35008.1e304: supHardenedWinVerifyImageByHandle: -> 0 (\Device\HarddiskVolume3\Windows\System32\kernel32.dll) 35008.1e304: supR3HardenedWinVerifyCacheInsert: \Device\HarddiskVolume3\Windows\System32\kernel32.dll 35008.1e304: supR3HardenedMonitor_LdrLoadDll: pName=C:\WINDOWS\System32\KERNEL32.DLL (Input=KERNEL32.DLL, rcNtResolve=0xc0150008) *pfFlags=0xffffffff pwszSearchPath=0000000000004001:<flags> [calling] 35008.1e304: supR3HardenedDllNotificationCallback: load 00007ffaeb580000 LB 0x002a6000 C:\WINDOWS\System32\KERNELBASE.dll [fFlags=0x0] 35008.1e304: supHardenedWinVerifyImageByHandle: -> 0 (\Device\HarddiskVolume3\Windows\System32\KernelBase.dll) 35008.1e304: supR3HardenedWinVerifyCacheInsert: \Device\HarddiskVolume3\Windows\System32\KernelBase.dll 35008.1e304: supR3HardenedDllNotificationCallback: load 00007ffaed090000 LB 0x000b2000 C:\WINDOWS\System32\KERNEL32.DLL [fFlags=0x0] 35008.1e304: supR3HardenedScreenImage/LdrLoadDll: cache hit (VINF_SUCCESS) on \Device\HarddiskVolume3\Windows\System32\kernel32.dll [lacks WinVerifyTrust] 35008.1e304: supR3HardenedMonitor_LdrLoadDll: returns rcNt=0x0 hMod=00007ffaed090000 'C:\WINDOWS\System32\KERNEL32.DLL' 35008.1e304: supR3HardenedDllNotificationCallback: load 00007ff605690000 LB 0x00110000 C:\Program Files\Oracle\VirtualBox\VBoxHeadless.exe [fFlags=0x0] 35008.1e304: '\Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe' has no imports 35008.1e304: supHardenedWinVerifyImageByHandle: -> 0 (\Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe) 35008.1e304: supR3HardenedWinVerifyCacheInsert: \Device\HarddiskVolume3\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 884.b80: supR3HardNtChildWaitFor[1]: Quitting: ExitCode=0xc0000005 (rcNtWait=0x0, rcNt1=0x0, rcNt2=0x103, rcNt3=0x103, 202 ms, CloseEvents);
-
미해결3dsmax 초급부터 전문가까지 - 한방에 끝내는 3dsmax 강좌
step build
안녕하세요! step build 에 관해서 질문하려고 합니다 <FREEFORM - SURFACE - NEWOBJECT 선택 -STEPBUILD 를 했는데 이런 현상이 일어났어요 ㅠ
-
해결됨실전! 스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발
IllegalStateException 오류질문입니다.
강의 내용 그대로 따라가고있으며 회원가입 테스트 코드 실행시 아래와 같은 오류가뜹니다. /Library/Java/JavaVirtualMachines/jdk-16.0.1.jdk/Contents/Home/bin/java -ea -Didea.test.cyclic.buffer.size=1048576 -javaagent:/Applications/IntelliJ IDEA CE.app/Contents/lib/idea_rt.jar=52776:/Applications/IntelliJ IDEA CE.app/Contents/bin -Dfile.encoding=UTF-8 -classpath /Applications/IntelliJ IDEA CE.app/Contents/lib/idea_rt.jar:/Applications/IntelliJ IDEA CE.app/Contents/plugins/junit/lib/junit5-rt.jar:/Applications/IntelliJ IDEA CE.app/Contents/plugins/junit/lib/junit-rt.jar:/Users/gimdohun/workspace_3th/workspace/intelij/jpashop/out/test/classes:/Users/gimdohun/workspace_3th/workspace/intelij/jpashop/out/production/classes:/Users/gimdohun/workspace_3th/workspace/intelij/jpashop/out/production/resources:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-data-jpa/2.5.5/5ec66dab8ad9dead3322e21d1bfafe29da89f360/spring-boot-starter-data-jpa-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-thymeleaf/2.5.5/d3e44e50b15ff0950e76372777b351b18e3ebc1/spring-boot-starter-thymeleaf-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-web/2.5.5/c09bf133d22c865d6ce4d67ff48aece7ff1defb1/spring-boot-starter-web-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-devtools/2.5.5/cd4c92b6039cad49b9586b668e905e430d3b3dac/spring-boot-devtools-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/junit/junit/4.13.1/cdd00374f1fee76b11e2a9d127405aa3f6be5b6a/junit-4.13.1.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.github.gavlyukovskiy/p6spy-spring-boot-starter/1.5.6/495579c7fb01b005f19ec4d5188245c66de0937b/p6spy-spring-boot-starter-1.5.6.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-test/2.5.5/e78676e5ac354f483699308768713aa016951448/spring-boot-starter-test-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-aop/2.5.5/25b36a03046a5262089d1167e29086a62afd2e9f/spring-boot-starter-aop-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-jdbc/2.5.5/937cf9e02eeefa8f2e4c4dade226e5c4482c3207/spring-boot-starter-jdbc-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/jakarta.transaction/jakarta.transaction-api/1.3.3/c4179d48720a1e87202115fbed6089bdc4195405/jakarta.transaction-api-1.3.3.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/jakarta.persistence/jakarta.persistence-api/2.2.3/8f6ea5daedc614f07a3654a455660145286f024e/jakarta.persistence-api-2.2.3.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.hibernate/hibernate-core/5.4.32.Final/99a5e10bf455337014c190e141ec631e9ff71663/hibernate-core-5.4.32.Final.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-jpa/2.5.5/a1ad7a3a0b7f97ad59a77ec16dac63e58ae938db/spring-data-jpa-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aspects/5.3.10/74cb456f1f3066ba3c83df516be856dc17e2ea86/spring-aspects-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter/2.5.5/8657d6f1f00002e8a839fc35fe2f2cd7fc09b72a/spring-boot-starter-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.thymeleaf/thymeleaf-spring5/3.0.12.RELEASE/aa640b214411978a23cbe271c3fb9569d1bda608/thymeleaf-spring5-3.0.12.RELEASE.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.thymeleaf.extras/thymeleaf-extras-java8time/3.0.4.RELEASE/36e7175ddce36c486fff4578b5af7bb32f54f5df/thymeleaf-extras-java8time-3.0.4.RELEASE.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-json/2.5.5/11923b2b5ca33c6c849952ed1bd47a77c9ec0a85/spring-boot-starter-json-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-tomcat/2.5.5/3fb58add8060ff5a6a17e08eeabca1e823c2f04a/spring-boot-starter-tomcat-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-webmvc/5.3.10/d8a26ccc0fb4788c05eca148be8ee987d554a9d2/spring-webmvc-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-web/5.3.10/31984cef4b5d38f2711cf870994c43e89619ff4e/spring-web-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-autoconfigure/2.5.5/350511c5612eea8df4ef0f95e2c1b3ff3ea962e8/spring-boot-autoconfigure-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot/2.5.5/c6335b6e1aff79b13565890ad833bb8865ae2d50/spring-boot-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.hamcrest/hamcrest-core/2.2/3f2bd07716a31c395e2837254f37f21f0f0ab24b/hamcrest-core-2.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.github.gavlyukovskiy/datasource-decorator-spring-boot-autoconfigure/1.5.6/cac386fe9df77870133594f054ee32e5d08ab93d/datasource-decorator-spring-boot-autoconfigure-1.5.6.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/p6spy/p6spy/3.8.2/52299d9a1ec2bc2fb8b1a21cc12dfc1a7c033caf/p6spy-3.8.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-test-autoconfigure/2.5.5/5c43be6c778ccd381a3431449553fcbccb08734f/spring-boot-test-autoconfigure-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-test/2.5.5/e5cc96eb08b41ea0b74d50bb210430686912e33/spring-boot-test-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.jayway.jsonpath/json-path/2.5.0/c35ef29095125b51638d19120f63e2b56eff20e9/json-path-2.5.0.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/jakarta.xml.bind/jakarta.xml.bind-api/2.3.3/48e3b9cfc10752fba3521d6511f4165bea951801/jakarta.xml.bind-api-2.3.3.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.assertj/assertj-core/3.19.0/f64cb5690b85e68d5e1e6c6152bfb6e3840a452d/assertj-core-3.19.0.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.hamcrest/hamcrest/2.2/1820c0968dba3a11a1b30669bb1f01978a91dedc/hamcrest-2.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.junit.jupiter/junit-jupiter/5.7.2/62faa742964a9d8dab8fdb4a0eab7b01441c171f/junit-jupiter-5.7.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.mockito/mockito-junit-jupiter/3.9.0/871745ab6af5a269411ea3c1f99ced82ed079436/mockito-junit-jupiter-3.9.0.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.mockito/mockito-core/3.9.0/b7573430aea743b26434b44f4f46272af613e660/mockito-core-3.9.0.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.skyscreamer/jsonassert/1.5.0/6c9d5fe2f59da598d9aefc1cfc6528ff3cf32df3/jsonassert-1.5.0.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-test/5.3.10/b81eacc8d0e38462b4165a170202450d18795587/spring-test-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-core/5.3.10/4e0b94b1e2d7a7399ecedef03dd676c34133625e/spring-core-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.xmlunit/xmlunit-core/2.8.2/8e4e46b87afaaf9b6cfb8de778e473cf7aeb087f/xmlunit-core-2.8.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-aop/5.3.10/de0e0c07193697df7ba5db6086020447fdbcb24d/spring-aop-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.aspectj/aspectjweaver/1.9.7/158f5c255cd3e4408e795b79f7c3fbae9b53b7ca/aspectjweaver-1.9.7.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jdbc/5.3.10/206882992cbfee0dc908e17b36cf285857e3fa99/spring-jdbc-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.zaxxer/HikariCP/4.0.3/107cbdf0db6780a065f895ae9d8fbf3bb0e1c21f/HikariCP-4.0.3.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/jaxb-runtime/2.3.5/a169a961a2bb9ac69517ec1005e451becf5cdfab/jaxb-runtime-2.3.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.hibernate.common/hibernate-commons-annotations/5.1.2.Final/e59ffdbc6ad09eeb33507b39ffcf287679a498c8/hibernate-commons-annotations-5.1.2.Final.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.jboss.logging/jboss-logging/3.4.2.Final/e517b8a93dd9962ed5481345e4d262fdd47c4217/jboss-logging-3.4.2.Final.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.javassist/javassist/3.27.0-GA/f63e6aa899e15eca8fdaa402a79af4c417252213/javassist-3.27.0-GA.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy/1.10.22/ef45d7e2cd1c600d279704f492ed5ce2ceb6cdb5/byte-buddy-1.10.22.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/antlr/antlr/2.7.7/83cd2cd674a217ade95a4bb83a8a14f351f48bd0/antlr-2.7.7.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.jboss/jandex/2.2.3.Final/d3865101f0666b63586683bd811d754517f331ab/jandex-2.2.3.Final.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.fasterxml/classmate/1.5.1/3fe0bed568c62df5e89f4f174c101eab25345b6c/classmate-1.5.1.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.dom4j/dom4j/2.1.3/a75914155a9f5808963170ec20653668a2ffd2fd/dom4j-2.1.3.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-context/5.3.10/45945cec4c23de39faf98139ad81b59965014ff0/spring-context-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-orm/5.3.10/a010813c931ab39c6836b74e98114ddc346b9a03/spring-orm-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.data/spring-data-commons/2.5.5/4d40ebb9fa2bc841571fd88070986f4442aa8cdb/spring-data-commons-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-tx/5.3.10/2840cabc3b3d6b993f8dbb169eb36321c97fec85/spring-tx-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-beans/5.3.10/1ff16eb107dd0411deaffa236467efed44d65c60/spring-beans-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.slf4j/slf4j-api/1.7.32/cdcff33940d9f2de763bc41ea05a0be5941176c3/slf4j-api-1.7.32.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework.boot/spring-boot-starter-logging/2.5.5/2731a074593f6b1089060a4af54ef8eee464d7f0/spring-boot-starter-logging-2.5.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/jakarta.annotation/jakarta.annotation-api/1.3.5/59eb84ee0d616332ff44aba065f3888cf002cd2d/jakarta.annotation-api-1.3.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.yaml/snakeyaml/1.28/7cae037c3014350c923776548e71c9feb7a69259/snakeyaml-1.28.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.thymeleaf/thymeleaf/3.0.12.RELEASE/de1865b0d58590a50c33900115a293335dd8ef25/thymeleaf-3.0.12.RELEASE.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jdk8/2.12.5/6b2f79547d217ad50dfc5b57af7444a3aa583b43/jackson-datatype-jdk8-2.12.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.datatype/jackson-datatype-jsr310/2.12.5/a0a9870b681a72789c5c6bdc380e45ab719c6aa3/jackson-datatype-jsr310-2.12.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.module/jackson-module-parameter-names/2.12.5/2c85c2036d0851425a260c01eb5f7ddbed1eeb00/jackson-module-parameter-names-2.12.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.12.5/b064cf057f23d3d35390328c5030847efeffedde/jackson-databind-2.12.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-websocket/9.0.53/e73e461aa0da6a1779bba31f90011cfbd4e4233/tomcat-embed-websocket-9.0.53.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-core/9.0.53/3343c5ebe9e66da2f75436569e371920e8db1d55/tomcat-embed-core-9.0.53.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.apache.tomcat.embed/tomcat-embed-el/9.0.53/d2fcc31c3ffad7227fcb14ebffc1ed1ab8b7494/tomcat-embed-el-9.0.53.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-expression/5.3.10/7ca7f1b5f7a2a9e335f45ffaeb59995c8ab344bc/spring-expression-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/net.minidev/json-smart/2.4.7/8d7f4c1530c07c54930935f3da85f48b83b3c109/json-smart-2.4.7.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/jakarta.activation/jakarta.activation-api/1.2.2/99f53adba383cb1bf7c3862844488574b559621f/jakarta.activation-api-1.2.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.junit.jupiter/junit-jupiter-params/5.7.2/685f832f8c54dd40100f646d61aca88ed9545421/junit-jupiter-params-5.7.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.junit.jupiter/junit-jupiter-api/5.7.2/f4b4079732a9c537983324cfa4e46655f21d2c56/junit-jupiter-api-5.7.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/net.bytebuddy/byte-buddy-agent/1.10.22/b01df6b71a882b9fde5a608a26e641cd399a4d83/byte-buddy-agent-1.10.22.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.objenesis/objenesis/3.2/7fadf57620c8b8abdf7519533e5527367cb51f09/objenesis-3.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.vaadin.external.google/android-json/0.0.20131108.vaadin1/fa26d351fe62a6a17f5cda1287c1c6110dec413f/android-json-0.0.20131108.vaadin1.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.springframework/spring-jcl/5.3.10/747a2d6ba0d8a74c4f90a8c66c221e3084e864ee/spring-jcl-5.3.10.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.glassfish.jaxb/txw2/2.3.5/ec8930fa62e7b1758b1664d135f50c7abe86a4a3/txw2-2.3.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.sun.istack/istack-commons-runtime/3.0.12/cbbe1a62b0cc6c85972e99d52aaee350153dc530/istack-commons-runtime-3.0.12.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-classic/1.2.6/b09efa852337fa0dd9859614389eec58dc287116/logback-classic-1.2.6.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-to-slf4j/2.14.1/ce8a86a3f50a4304749828ce68e7478cafbc8039/log4j-to-slf4j-2.14.1.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.slf4j/jul-to-slf4j/1.7.32/8a055c04ab44e8e8326901cadf89080721348bdb/jul-to-slf4j-1.7.32.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.attoparser/attoparser/2.0.5.RELEASE/a93ad36df9560de3a5312c1d14f69d938099fa64/attoparser-2.0.5.RELEASE.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.unbescape/unbescape/1.1.6.RELEASE/7b90360afb2b860e09e8347112800d12c12b2a13/unbescape-1.1.6.RELEASE.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-core/2.12.5/725e364cc71b80e60fa450bd06d75cdea7fb2d59/jackson-core-2.12.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-annotations/2.12.5/52d929d5bb21d0186fe24c09624cc3ee4bafc3b3/jackson-annotations-2.12.5.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/net.minidev/accessors-smart/2.4.7/3970cfc505e6657ca60f3aa57c849f6043000d7a/accessors-smart-2.4.7.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.apiguardian/apiguardian-api/1.1.0/fc9dff4bb36d627bdc553de77e1f17efd790876c/apiguardian-api-1.1.0.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.junit.platform/junit-platform-commons/1.7.2/34adfea6c13fc4a996cf38cdad80800ce850d198/junit-platform-commons-1.7.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.opentest4j/opentest4j/1.2.0/28c11eb91f9b6d8e200631d46e20a7f407f2a046/opentest4j-1.2.0.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/ch.qos.logback/logback-core/1.2.6/25be1abb32e870ff042e698a799b56587e0dca9a/logback-core-1.2.6.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.apache.logging.log4j/log4j-api/2.14.1/cd8858fbbde69f46bce8db1152c18a43328aae78/log4j-api-2.14.1.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.ow2.asm/asm/9.1/a99500cf6eea30535eeac6be73899d048f8d12a8/asm-9.1.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.h2database/h2/1.4.200/f7533fe7cb8e99c87a43d325a77b4b678ad9031a/h2-1.4.200.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.junit.jupiter/junit-jupiter-engine/5.7.2/9415680a889f00b8205a094c5c487bc69dc7077d/junit-jupiter-engine-5.7.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/com.sun.activation/jakarta.activation/1.2.2/74548703f9851017ce2f556066659438019e7eb5/jakarta.activation-1.2.2.jar:/Users/gimdohun/.gradle/caches/modules-2/files-2.1/org.junit.platform/junit-platform-engine/1.7.2/2573770b46b8a199ed5f6b0f96fb99e468bfe891/junit-platform-engine-1.7.2.jar com.intellij.rt.junit.JUnitStarter -ideVersion5 -junit4 jpabook.service.MemberServiceTest 17:15:42.837 [main] DEBUG org.springframework.test.context.junit4.SpringJUnit4ClassRunner - SpringJUnit4ClassRunner constructor called with [class jpabook.service.MemberServiceTest] 17:15:42.849 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating CacheAwareContextLoaderDelegate from class [org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate] 17:15:42.865 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating BootstrapContext using constructor [public org.springframework.test.context.support.DefaultBootstrapContext(java.lang.Class,org.springframework.test.context.CacheAwareContextLoaderDelegate)] 17:15:42.936 [main] DEBUG org.springframework.test.context.BootstrapUtils - Instantiating TestContextBootstrapper for test class [jpabook.service.MemberServiceTest] from class [org.springframework.boot.test.context.SpringBootTestContextBootstrapper] 17:15:42.953 [main] INFO org.springframework.boot.test.context.SpringBootTestContextBootstrapper - Neither @ContextConfiguration nor @ContextHierarchy found for test class [jpabook.service.MemberServiceTest], using SpringBootContextLoader 17:15:42.965 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [jpabook.service.MemberServiceTest]: class path resource [jpabook/service/MemberServiceTest-context.xml] does not exist 17:15:42.971 [main] DEBUG org.springframework.test.context.support.AbstractContextLoader - Did not detect default resource location for test class [jpabook.service.MemberServiceTest]: class path resource [jpabook/service/MemberServiceTestContext.groovy] does not exist 17:15:42.971 [main] INFO org.springframework.test.context.support.AbstractContextLoader - Could not detect default resource locations for test class [jpabook.service.MemberServiceTest]: no resource found for suffixes {-context.xml, Context.groovy}. 17:15:42.972 [main] INFO org.springframework.test.context.support.AnnotationConfigContextLoaderUtils - Could not detect default configuration classes for test class [jpabook.service.MemberServiceTest]: MemberServiceTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration. 17:15:43.087 [main] DEBUG org.springframework.test.context.support.ActiveProfilesUtils - Could not find an 'annotation declaring class' for annotation type [org.springframework.test.context.ActiveProfiles] and class [jpabook.service.MemberServiceTest] java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test at org.springframework.util.Assert.state(Assert.java:76) at org.springframework.boot.test.context.SpringBootTestContextBootstrapper.getOrFindConfigurationClasses(SpringBootTestContextBootstrapper.java:236) at org.springframework.boot.test.context.SpringBootTestContextBootstrapper.processMergedContextConfiguration(SpringBootTestContextBootstrapper.java:152) at org.springframework.test.context.support.AbstractTestContextBootstrapper.buildMergedContextConfiguration(AbstractTestContextBootstrapper.java:392) at org.springframework.test.context.support.AbstractTestContextBootstrapper.buildDefaultMergedContextConfiguration(AbstractTestContextBootstrapper.java:309) at org.springframework.test.context.support.AbstractTestContextBootstrapper.buildMergedContextConfiguration(AbstractTestContextBootstrapper.java:262) at org.springframework.test.context.support.AbstractTestContextBootstrapper.buildTestContext(AbstractTestContextBootstrapper.java:107) at org.springframework.boot.test.context.SpringBootTestContextBootstrapper.buildTestContext(SpringBootTestContextBootstrapper.java:102) at org.springframework.test.context.TestContextManager.<init>(TestContextManager.java:137) at org.springframework.test.context.TestContextManager.<init>(TestContextManager.java:122) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTestContextManager(SpringJUnit4ClassRunner.java:151) at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.<init>(SpringJUnit4ClassRunner.java:142) at org.springframework.test.context.junit4.SpringRunner.<init>(SpringRunner.java:49) at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:78) at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) at org.junit.internal.builders.AnnotatedBuilder.buildRunner(AnnotatedBuilder.java:104) at org.junit.internal.builders.AnnotatedBuilder.runnerForClass(AnnotatedBuilder.java:86) at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:70) at org.junit.internal.builders.AllDefaultPossibilitiesBuilder.runnerForClass(AllDefaultPossibilitiesBuilder.java:37) at org.junit.runners.model.RunnerBuilder.safeRunnerForClass(RunnerBuilder.java:70) at org.junit.internal.requests.ClassRequest.createRunner(ClassRequest.java:28) at org.junit.internal.requests.MemoizingRequest.getRunner(MemoizingRequest.java:19) at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:50) at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:33) at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:235) at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:54) Process finished with exit code 255 @SpringBootTest어노테이션에 클래스 이름을 붙혀야되는건가 싶어서 @SpringBootTest(classes = MemberServiceTest.class) 이런식으로 바꿔도 아래와같은 오류가 나옵니다. Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'jpabook.service.MemberService' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)} MemberService package jpabook.service;import jpabook.jpashop.domain.Member;import jpabook.jpashop.repository.MemberRepository;import lombok.RequiredArgsConstructor;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;import org.springframework.transaction.annotation.Transactional;import java.util.List;@Service@Transactional(readOnly = true)@RequiredArgsConstructorpublic class MemberService { private final MemberRepository memberRepository; /** * 회원가입 */ @Transactional //변경 public Long join(Member member) { validateDuplicateMember(member); //중복 회원 검증 memberRepository.save(member); return member.getId(); } private void validateDuplicateMember(Member member) { List<Member> findMembers = memberRepository.findByName(member.getName()); if (!findMembers.isEmpty()) { throw new IllegalStateException("이미 존재하는 회원입니다."); } } /** *전체 회원 조회 */ public List<Member> findMembers() { return memberRepository.findAll(); } public Member findOne(Long memberId) { return memberRepository.findOne(memberId); }} MemberServiceTest package jpabook.service;import jpabook.jpashop.JpashopApplication;import jpabook.jpashop.domain.Member;import jpabook.jpashop.repository.MemberRepository;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.test.context.junit4.SpringRunner;import org.springframework.transaction.annotation.Transactional;import static org.junit.Assert.assertEquals;import static org.junit.Assert.fail;@RunWith(SpringRunner.class)@SpringBootTest@Transactionalpublic class MemberServiceTest { @Autowired MemberService memberService; @Autowired MemberRepository memberRepository; @Test public void 회원가입() throws Exception {//Given Member member = new Member(); member.setName("kim");//When Long saveId = memberService.join(member);//Then assertEquals(member, memberRepository.findOne(saveId)); }}
-
미해결Vue.js 완벽 가이드 - 실습과 리팩토링으로 배우는 실전 개념
build 성공 후 배포 완료가 안됩니다
Repository를 fork 해서 실습해보는 중입니다. master에 vue-news가 없어서 다른 branch로 실습을 진행했는데요. Deploy log를 보면 lint를 통과하지 못해서 에러가 발생하는데, 결국 build가 된 것 같습니다. 그런데 강의에서처럼 Preview가 보이지 않아서 확인해보니 아직 Site deploy in progess 상태로 멈춰있었습니다. 원인이 lint를 통과하지 못해서가 맞는지 궁금합니다. 사용한 branch는 3_api, 13_api-advanced 입니다. 로그를 첨부합니다. 4:56:17 PM: 2 errors found. 4:56:17 PM: Module Warning (from ./node_modules/eslint-loader/index.js): 4:56:17 PM: error: Unexpected console statement (no-console) at src/views/UserView.vue:13:25: 4:56:17 PM: 11 | created() { 4:56:17 PM: 12 | fetchUser('davideast') 4:56:17 PM: > 13 | .then(response => console.log(response)) 4:56:17 PM: | ^ 4:56:17 PM: 14 | .catch(error => console.log(error)); 4:56:17 PM: 15 | } 4:56:17 PM: 16 | } 4:56:17 PM: error: Unexpected console statement (no-console) at src/views/UserView.vue:14:23: 4:56:17 PM: 12 | fetchUser('davideast') 4:56:17 PM: 13 | .then(response => console.log(response)) 4:56:17 PM: > 14 | .catch(error => console.log(error)); 4:56:17 PM: | ^ 4:56:17 PM: 15 | } 4:56:17 PM: 16 | } 4:56:17 PM: 17 | </script> 4:56:17 PM: 2 errors found. 4:56:17 PM: You may use special comments to disable some warnings. 4:56:17 PM: Use // eslint-disable-next-line to ignore the next line. 4:56:17 PM: Use /* eslint-disable */ to ignore all warnings in a file. 4:56:17 PM: File Size Gzipped 4:56:17 PM: dist/js/chunk-vendors.04ab93e8.js 126.98 kb 44.01 kb 4:56:17 PM: dist/js/app.a5b95203.js 5.58 kb 1.97 kb 4:56:17 PM: dist/css/app.71f56251.css 0.56 kb 0.29 kb 4:56:17 PM: Images and other types of assets omitted. 4:56:17 PM: DONE Build complete. The dist directory is ready to be deployed. 4:56:17 PM: INFO Check out deployment instructions at https://cli.vuejs.org/guide/deployment.html
-
미해결따라하면서 배우는 고박사의 유니티 기초
강의에 있는 #05MoveByTransform Scenes 에 대한 설명은 없는지요?
고박사님의 강좌를 보면서 직접 코딩도 하고, 강의대로 정상 작동하는지 테스트 하면서 하느라 시간이 많이 걸리지만 하나씩 배우면서 잘 작동하는것을 보니 뿌듯합니다. ^^; 그런데 강의대로 모든 Scenes 및 코드들을 작성 및 실행하고 난후 강의가 끝난후 다시 확인하던 중에 강의중 화면에는 #05MoveByTransform 씬이 있는데 이 씬에 대한 설명이 없던데 무엇을 하는 씬인지요?
-
미해결3dsmax 초급부터 전문가까지 - 한방에 끝내는 3dsmax 강좌
이런부분(삼각폴리)은 어떻게 쿼드폴리로 구성하는지 알고싶어요
- 학습 관련 질문을 남겨주세 모델링 보면서 공부하고 복습하면서 다른거는 왠만큼 사각형을 유지하면서 모델링은 하겠는데 이러한 부분은 어떻게 사각형으로 폴리를 구성하는지 알고싶어요! . 상세히 작성하면 더 좋아요! - 먼저 유사한 질문이 있었는지 검색해보세요. - 서로 예의를 지키며 존중하는 문화를 만들어가요. - 잠깐! 인프런 서비스 운영 관련 문의는 1:1 문의하기를 이용해주세요.