The protected-mode tag has no wiki summary.
0
votes
0answers
39 views
Intel 32bit protected mode enabling paging causes triple fault
I am working on a hobbyist OS and I am having trouble with identity mapping and enabling paging. I am working with Bochs emulator, and I have the following error message :=
00691299602e[CPU0 ] ...
0
votes
1answer
35 views
Questions about indirect jmp in protected mode
Because the address xxxx:yyyyyyyy is 32 bits in protected mode, I put a 48-bits address in a piece of memory and want to give indirect jmp, here is what I wrote:
mov eax,s1
mov [address],eax
mov ...
1
vote
1answer
66 views
Can I run assembly program that switches to protected mode in dosbox?
We are studying an assembly program that switches an 386 processor from real mode to protected mode, and then back to real mode. The program is compiled using TASM.
Because this program needs to do ...
0
votes
2answers
69 views
How do I find out the contents of GDT
I am analyzing a disassembled dll and got stuck on the line
mov ebx,fs:[00000004h]
I want to find out the exact physical address of the data that is written into ebx with this instruction. gdb ...
0
votes
0answers
101 views
Word 2010: Editable sections become uneditable after Protected view - only TEMPLATES
I have a Word document on my server. Let's say it's a .docx document: I protect the document, and make editable only some stuff. I save it I open it, I disable the PROTECTED VIEW and have my document ...
8
votes
1answer
193 views
Temp directory using virtualized path on some computers
In my Silverlight application I'm using regular SaveFileDialog for prompt user to save some file.
The problem is that on some Windows 7 computers, if user use IE in protected mode, and try to save ...
0
votes
0answers
8 views
What is the role of DC bit in GDT?
this is my code :
...
data_seg equ os_data-gdt_start
code_seg equ os_code-gdt_start
...
jmp code_seg:pm_start
[BITS 32]
pm_start:
mov ax,data_seg
mov ds,ax
mov word [ds:0xb8000],0xC341
it ...
0
votes
0answers
33 views
system restart when assembly code growth
I'm trying to write an assembly code to create a little OS. When my code is simple there is not any problem but when I add some simple lines to last code system resets during run. the codes I have ...
0
votes
0answers
45 views
XP/Protected Mode Programs
I have some Borland Pascal programs originally written for DOS protected mode. These needed to be run with RTM.EXE and DPMI16BI.OVL. If I now run them in a Command window under Windows XP is it ...
0
votes
0answers
58 views
Can't get any event while Protected Mode In IE is ON
I'm writing an IE add-on (ToolBar) with Winform and I need to get the mouse position and keyboard key press
And I don't get any Windows event while the IE is on Protected mode,
Even the protected ...
3
votes
0answers
122 views
Passing a url from a link drag-and-dropped from InternetExplorer to sojamo/Processing
I'm having trouble dropping an address from the IE address bar into a processing application, even the simple DropBasics.pde example that comes with sDrop. I think the problem is to do with Internet ...
1
vote
1answer
142 views
Boot loop when trying to enable protected mode
I'm writing a basic bootloader just to the point where I have some sort of environment where I can write a simple C program, write it to a hard disk (no file system), and run it. That's all I want to ...
0
votes
1answer
124 views
GPF after far jump to protected mode
After several weeks of work using GRUB as my bootloader I decided that I should roll my own so I can understand how they work. I found Brokenthorn's tutorials on the internet (currently on ...
1
vote
1answer
108 views
Type-1 VMM and Ring 1
Recently, I am doing homework about Virtualization. My question is, how VMM transfer control to the guest kernel and run that code in Ring 1?
Type-1 VMM: This is the classical trap-and-emulate VMM. ...
0
votes
0answers
24 views
Resource for Learning Windows Assembly [duplicate]
Possible Duplicate:
Writing Assembly for Windows x86
Could you please provide me with resources for learning 32-bit assembly under windows. I already know 16-bit assembly and I have ...
1
vote
1answer
102 views
Cannot jump without error
I've problem. Last days I'm playing with GDT, A20 and protected mode. I have this simple code for GDT:
gdt_start:
gdt_null:
dd 00000000h
dd 00000000h
gdt_code:
dw 0xFFFF
dw 0
db ...
0
votes
3answers
481 views
Selenium IEDriverServer unable to configure protected mode due to security policy
The IEDriverServer Wiki page has the following listed as a requirement:
On IE 7 or higher on Windows Vista or Windows 7, you must set the
Protected Mode settings for each zone to be the same ...
-2
votes
1answer
149 views
How can I access the first 1MB of RAM in Windows programming (Protected Mode)? [closed]
How can I access the first 1 MB of RAM directly in Windows programming (Protected Mode)?
For example to write to the video part.
Can I use DPMI to solve all problems?
0
votes
1answer
222 views
Custom icon for IE9 Toolbar buttons
I made an extension for IE9 that adds a toolbar button.
The registration looks like this:
RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(RegCmd, true);
if (registryKey == null)
...
0
votes
1answer
385 views
disable the Security>Local Intranet>enable protected mode from the code
How to disable the Security>Local Intranet>enable protected mode from the code?
I am facing problem with facebook like button when this setting is turned on.
0
votes
1answer
177 views
How to start a process with low integrity level
I have a socket client running as BHO object which tries to communicate with Desktop application. As the IE is running in low integrity level the bho is not loaded with IE running under protected ...
1
vote
1answer
320 views
IA32 CPU, protected mode: which data is saved to the stack when an interrupt takes place?
I would like to know the size in bytes that each piece of data uses in the stack. How does the privilege level affect the answer?
1
vote
1answer
643 views
Mailto link causes page to go blank in ie8
My problem is similar to this post: mailto causing a blank page in IE8 when used with Dojo.
I have a page with a mailto link and when the user click on the link, the email client opens as expected, ...
0
votes
1answer
578 views
Techniques to save files from ActiveX (protected mode IE)
i have an ActiveX.
ActiveX means:
Internet Explorer
native binary code
running from a dll (.ocx)
in Protected Mode
The user would like to save some content. i would like to show ...
5
votes
2answers
1k views
Assembler jump in Protected Mode with GDT
I am currently playing around with x86 Assember in order to sharpen my low-level programming skills :). Currently, I am facing a little problem with the addressing scheme in 32-Bit Protected Mode.
...
1
vote
0answers
217 views
How to call IEGetProtectedModeCookie API from a high-integrity (admin) process?
I need to call the IE8 IEGetProtectedModeCookie API from a high-integrity (admin) process. Whenever I call this API from my Azure webapp, I'm getting ERROR_INVALID_ACCESS. I've read in a number of ...
3
votes
1answer
366 views
Interacting with a Service from Internet Explorer
I am attempting to have IE9 interact with a COM service (created using Visual Studio 2010's wizard) while running in protected mode. If I run the service as admin rather than registering it as a ...
1
vote
1answer
359 views
how create medium integrity level process from low integrity level process?
If I run IE in protected mode, its integrity level is low. And if I then create a medium integrity level process (impl by ActiveX), IE will warn the user with an Elevation Warning window.
How do I ...
1
vote
3answers
2k views
IE Protected Mode for Local System Account
I have a Windows Service that runs a Team City Build agent on a Windows 7 OS.
This agent triggers NUnit tests which use the Selenium IE web drivers to execute a series of tests.
For the Selenium IE ...
2
votes
1answer
165 views
How to delay execution for a specified amount of milliseconds when in protected mode?
I have a C program that runs on bare x86 (without an OS) in protected mode. I need to delay the program's execution for a certain amount of time. Currently, I'm doing this:
for(p=0; p<1000000; ...
1
vote
2answers
1k views
IE Protected Mode + SSL Login = No cookie for non-SSL pages
(FWIW, I've posted this question to my blog as well: http://blog.wolffmyren.com/2011/07/11/ie-protected-mode-ssl/)
Does anyone know how to work around Internet Explorer Protected Mode limitations ...
2
votes
1answer
720 views
C# : Lower integrity of named pipes
I am developing an Internet Explorer Browser Helper Object (BHO) in C#. This BHO detects the URL that the user navigates to and then auto populates the username and password.
The BHO communicates ...
1
vote
1answer
416 views
VESA BIOS Extensions: How to Change Resolution?
I just finished writing a small boot loader and kernel that switches into protected mode and sets up a basic physical and virtual memory manager:
Currently, I'm displaying text onto the screen by ...
0
votes
2answers
209 views
How to work with Isolated Storage and IE Protected Mode?
I have an Internet Explorer addin/plugin and need to use IsolatedStorage (.NET/C#/3.5) under "Low Privileges"/Protected Mode, so I plan to write to %USERPROFILE%\AppData\LocalLow
How can I select ...
1
vote
1answer
211 views
Does internet explorer running in protected mode allows full read access to the user's “My Documents” folder?
I'm currently developing an IE add-on that needs to read some existing files under the "My Documents" from the current user's profile.
If IE is running in protected mode:
what care should be taken ...
1
vote
1answer
181 views
Ancient history: Was any version of Turbo Pascal able to compile to Protected Mode on 286 or higher?
I remember 1990's Turbo Pascal 6.0 which had several compiler switches for 80286-specific features, all with a note that they work only in Real Mode but not in Protected Mode. Did Turbo Pascal ever ...
0
votes
1answer
210 views
about hardware drivers in protected mode
Recently, I'm trying to write a simple OS. This is a big project.
when I'm writing my code, I'm wondering how modern OS contact hardware under protected mode
In real mode, we can just call the bios ...
1
vote
3answers
6k views
Reading the Internet Explorer Protected Mode registry
I'm learning the registry with vbscript on the side. I would like to know would I check the strValuname and dwValue of the internet explorer protected mode feature through the use of vbscript?
I ...
7
votes
2answers
2k views
bootloader - switching processor to protected mode
I'm having difficulties understanding how a simple boot loader works. The boot loader I'm talking about is the one from MITs course "Operating Systems Engineering".
First, let me show you a piece of ...
5
votes
2answers
962 views
Does GRUB switch to protected mode?
I would like to ask if it is GRUB that switch the CPU to protected mode during boot up or is it the Linux kernel that does it. And also I would like to ask - is the kernel itself (vmlinuz) an ELF or ...
1
vote
1answer
434 views
Win32API.OpenFileMapping Throws Access Violation Exception From IE ToolBar
We are trying to Memory Mapping File Technique to share some information across the processes
But when we use this in one of our component which is IE Toolbar it throws access violation exception ...
2
votes
1answer
779 views
Windows 7 Internet Explorer 8 protected mode issue
I developed a Java applet that launches an executable file.
When I launch an executable file using the applet - with "protected mode activated" - my sistem crashes.
If I were to put my website in ...
0
votes
3answers
1k views
Windows XP: Have my program run in kernel mode?
I'm currently learning about the different modes the Windows operating system runs in (kernel mode vs. user mode), device drivers, their respective advantages and disadvantages and computer security ...
2
votes
1answer
880 views
DeleteURLCacheEntry doesnot delete Temporary Internet files when Protected Mode is ON
I am using "deleteURLCacheEntry" Wininet API to delete temporary internet files on Win7/Vista IE 7/8 respectively. The API works perfectly fine when IE's protected mode is OFF. But it fails silently ...
9
votes
2answers
826 views
How to detect IE Protected Mode using c#
I am building an IE Extension, and I need to keep my Access Database file in the Appdata folder. It's working fine. But in many systems where IE IE Protected Mode is ON, it crashes, I guess this is ...
1
vote
1answer
382 views
What debugger can you use on a DOS procted mode program?
I have a program written in CA-Clipper 5.2 and linked with Blinker 7. I recently learned how to compile it into protected mode in place of real mode. Now the real mode debugger won't work with the ...
3
votes
1answer
891 views
How to lower integrity of WCF named pipe
I have an Internet Explorer add-in, written in C#, which talks via a WCF named-pipe to a .NET desktop application. The desktop app creates the ServiceHost for the netNamedPipeBinding, and each ...
6
votes
9answers
1k views
Real mode BIOS routine and Protected Mode
I am doing some OS experiment. Until now, all my code utilized the real mode BIOS interrupt to manipulate hard disk and floppy. But once my code enabled the Protect Mode of the CPU, all the real mode ...
0
votes
1answer
207 views
Writing to windows Event Log from within IE extension in Protected Mode - fails with Access Denied
In a BHO running within Internet Explorer on Windows 7 with Protected Mode On, I'm trying to write to the windows event log. I'm writing to a source that already exists, and it's in the Application ...
1
vote
1answer
370 views
INFORMIX-SQL (SE) 4.10DC1 Protected Mode problem loading PSTARTSQL.EXE
I am attempting to fire up ISQL 4.10DC1 on MS-DOS 6.22, but cant seem to get PSTARTSQL.EXE to load, it says DOS16M Error[6]: Not enough memory.. I have DEVICE=C:\DOS\HIMEM.SYS as my first line in ...
