|
security
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Web Applications located on a FileDiskImage not accessable with Internet Information Server ? (DelphAs a programmer I would like to keep all my source code together on a FileDiskImage created with the FileDisk tool. ( http://www.winimage.com/misc/filedisk64.htm ) However when Internet Information Server tries to read/execute the web application a Server Error happens, can this problem be fixed ? *** Begin of Error *** Server Error in '/SimpleWebApplicationTest' Application. -------------------------------------------------------------------------------- Server cannot access application directory 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist or is not accessible because of security settings. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Web.HttpException: Server cannot access application directory 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist or is not accessible because of security settings. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: [HttpException (0x80004005): Server cannot access application directory 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist or is not accessible because of security settings.] System.Web.HttpRuntime.EnsureAccessToApplicationDirectory() +72 System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +263 [HttpException (0x80004005): ASP.NET Initialization Error] System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +982 System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +128 -------------------------------------------------------------------------------- Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032 *** End of Error *** Bye, Skybuck. Here is a piece of code from the filedisk.sys driver:
case IRP_MJ_DEVICE_CONTROL: switch (io_stack->Parameters.DeviceIoControl.IoControlCode) { case IOCTL_FILE_DISK_OPEN_FILE: SeImpersonateClient(device_extension->security_client_context, NULL); // *** looks suspicious *** irp->IoStatus.Status = FileDiskOpenFile(device_object, irp); PsRevertToSelf(); break; case IOCTL_FILE_DISK_CLOSE_FILE: irp->IoStatus.Status = FileDiskCloseFile(device_object, irp); break; default: irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; } break; default: irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; } Maybe impersonating the thread is detected by windows/iis and causing problems ? Just a guess Bye, Skybuck. Show quoteHide quote "Skybuck Flying" <spam@hotmail.com> wrote in message news:eh6l52$chi$1@news3.zwoll1.ov.home.nl... > Hello, > > As a programmer I would like to keep all my source code together on a > FileDiskImage created with the FileDisk tool. > > ( http://www.winimage.com/misc/filedisk64.htm ) > > However when Internet Information Server tries to read/execute the web > application a Server Error happens, can this problem be fixed ? > > *** Begin of Error *** > > Server Error in '/SimpleWebApplicationTest' Application. > -------------------------------------------------------------------------------- > > Server cannot access application directory > 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist > or is not accessible because of security settings. > Description: An unhandled exception occurred during the execution of the > current web request. Please review the stack trace for more information > about the error and where it originated in the code. > > Exception Details: System.Web.HttpException: Server cannot access > application directory 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The > directory does not exist or is not accessible because of security > settings. > > Source Error: > > An unhandled exception was generated during the execution of the current > web request. Information regarding the origin and location of the > exception can be identified using the exception stack trace below. > > Stack Trace: > > > [HttpException (0x80004005): Server cannot access application directory > 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist > or is not accessible because of security settings.] > System.Web.HttpRuntime.EnsureAccessToApplicationDirectory() +72 > System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +263 > > [HttpException (0x80004005): ASP.NET Initialization Error] > System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +982 > System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +128 > > > > > -------------------------------------------------------------------------------- > Version Information: Microsoft .NET Framework Version:1.1.4322.2032; > ASP.NET Version:1.1.4322.2032 > > *** End of Error *** > > Bye, > Skybuck. > > I would not expect any help with stolen code.
Show quoteHide quote "Skybuck Flying" <spam@hotmail.com> wrote in message news:eh6n7r$qie$1@news3.zwoll1.ov.home.nl... > Here is a piece of code from the filedisk.sys driver: > > case IRP_MJ_DEVICE_CONTROL: > switch (io_stack->Parameters.DeviceIoControl.IoControlCode) > { > case IOCTL_FILE_DISK_OPEN_FILE: > > > SeImpersonateClient(device_extension->security_client_context, NULL); // > *** looks suspicious *** > > irp->IoStatus.Status = FileDiskOpenFile(device_object, > irp); > > PsRevertToSelf(); > > break; > > case IOCTL_FILE_DISK_CLOSE_FILE: > irp->IoStatus.Status = FileDiskCloseFile(device_object, > irp); > break; > > default: > irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; > } > break; > > default: > irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; > } > > Maybe impersonating the thread is detected by windows/iis and causing > problems ? > > Just a guess > > Bye, > Skybuck. > > > "Skybuck Flying" <spam@hotmail.com> wrote in message > news:eh6l52$chi$1@news3.zwoll1.ov.home.nl... >> Hello, >> >> As a programmer I would like to keep all my source code together on a >> FileDiskImage created with the FileDisk tool. >> >> ( http://www.winimage.com/misc/filedisk64.htm ) >> >> However when Internet Information Server tries to read/execute the web >> application a Server Error happens, can this problem be fixed ? >> >> *** Begin of Error *** >> >> Server Error in '/SimpleWebApplicationTest' Application. >> -------------------------------------------------------------------------------- >> >> Server cannot access application directory >> 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist >> or is not accessible because of security settings. >> Description: An unhandled exception occurred during the execution of the >> current web request. Please review the stack trace for more information >> about the error and where it originated in the code. >> >> Exception Details: System.Web.HttpException: Server cannot access >> application directory 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The >> directory does not exist or is not accessible because of security >> settings. >> >> Source Error: >> >> An unhandled exception was generated during the execution of the current >> web request. Information regarding the origin and location of the >> exception can be identified using the exception stack trace below. >> >> Stack Trace: >> >> >> [HttpException (0x80004005): Server cannot access application directory >> 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist >> or is not accessible because of security settings.] >> System.Web.HttpRuntime.EnsureAccessToApplicationDirectory() +72 >> System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +263 >> >> [HttpException (0x80004005): ASP.NET Initialization Error] >> System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +982 >> System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) >> +128 >> >> >> >> >> -------------------------------------------------------------------------------- >> Version Information: Microsoft .NET Framework Version:1.1.4322.2032; >> ASP.NET Version:1.1.4322.2032 >> >> *** End of Error *** >> >> Bye, >> Skybuck. >> >> > > David J. Craig wrote:
> I would not expect any help with stolen code. Is it really stolen if you can download it directly from the Web site of the person who wrote it and it's distributed under the GNU GPL? http://www.acc.umu.se/~bosse/ -- Rob Here is a piece of code from the filedisk.sys driver:
case IRP_MJ_DEVICE_CONTROL: switch (io_stack->Parameters.DeviceIoControl.IoControlCode) { case IOCTL_FILE_DISK_OPEN_FILE: SeImpersonateClient(device_extension->security_client_context, NULL); // *** looks suspicious *** irp->IoStatus.Status = FileDiskOpenFile(device_object, irp); PsRevertToSelf(); break; case IOCTL_FILE_DISK_CLOSE_FILE: irp->IoStatus.Status = FileDiskCloseFile(device_object, irp); break; default: irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; } break; default: irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; } Maybe impersonating the thread is detected by windows/iis and causing problems ? Just a guess Bye, Skybuck. Show quoteHide quote "Skybuck Flying" <spam@hotmail.com> wrote in message news:eh6l52$chi$1@news3.zwoll1.ov.home.nl... > Hello, > > As a programmer I would like to keep all my source code together on a > FileDiskImage created with the FileDisk tool. > > ( http://www.winimage.com/misc/filedisk64.htm ) > > However when Internet Information Server tries to read/execute the web > application a Server Error happens, can this problem be fixed ? > > *** Begin of Error *** > > Server Error in '/SimpleWebApplicationTest' Application. > -------------------------------------------------------------------------------- > > Server cannot access application directory > 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist > or is not accessible because of security settings. > Description: An unhandled exception occurred during the execution of the > current web request. Please review the stack trace for more information > about the error and where it originated in the code. > > Exception Details: System.Web.HttpException: Server cannot access > application directory 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The > directory does not exist or is not accessible because of security > settings. > > Source Error: > > An unhandled exception was generated during the execution of the current > web request. Information regarding the origin and location of the > exception can be identified using the exception stack trace below. > > Stack Trace: > > > [HttpException (0x80004005): Server cannot access application directory > 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist > or is not accessible because of security settings.] > System.Web.HttpRuntime.EnsureAccessToApplicationDirectory() +72 > System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +263 > > [HttpException (0x80004005): ASP.NET Initialization Error] > System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +982 > System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +128 > > > > > -------------------------------------------------------------------------------- > Version Information: Microsoft .NET Framework Version:1.1.4322.2032; > ASP.NET Version:1.1.4322.2032 > > *** End of Error *** > > Bye, > Skybuck. > > Here is a piece of code from the filedisk.sys driver:
case IRP_MJ_DEVICE_CONTROL: switch (io_stack->Parameters.DeviceIoControl.IoControlCode) { case IOCTL_FILE_DISK_OPEN_FILE: SeImpersonateClient(device_extension->security_client_context, NULL); // *** looks suspicious *** irp->IoStatus.Status = FileDiskOpenFile(device_object, irp); PsRevertToSelf(); break; case IOCTL_FILE_DISK_CLOSE_FILE: irp->IoStatus.Status = FileDiskCloseFile(device_object, irp); break; default: irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; } break; default: irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; } Maybe impersonating the thread is detected by windows/iis and causing problems ? Just a guess Bye, Skybuck. Show quoteHide quote "Skybuck Flying" <spam@hotmail.com> wrote in message news:eh6l52$chi$1@news3.zwoll1.ov.home.nl... > Hello, > > As a programmer I would like to keep all my source code together on a > FileDiskImage created with the FileDisk tool. > > ( http://www.winimage.com/misc/filedisk64.htm ) > > However when Internet Information Server tries to read/execute the web > application a Server Error happens, can this problem be fixed ? > > *** Begin of Error *** > > Server Error in '/SimpleWebApplicationTest' Application. > -------------------------------------------------------------------------------- > > Server cannot access application directory > 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist > or is not accessible because of security settings. > Description: An unhandled exception occurred during the execution of the > current web request. Please review the stack trace for more information > about the error and where it originated in the code. > > Exception Details: System.Web.HttpException: Server cannot access > application directory 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The > directory does not exist or is not accessible because of security > settings. > > Source Error: > > An unhandled exception was generated during the execution of the current > web request. Information regarding the origin and location of the > exception can be identified using the exception stack trace below. > > Stack Trace: > > > [HttpException (0x80004005): Server cannot access application directory > 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist > or is not accessible because of security settings.] > System.Web.HttpRuntime.EnsureAccessToApplicationDirectory() +72 > System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +263 > > [HttpException (0x80004005): ASP.NET Initialization Error] > System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +982 > System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +128 > > > > > -------------------------------------------------------------------------------- > Version Information: Microsoft .NET Framework Version:1.1.4322.2032; > ASP.NET Version:1.1.4322.2032 > > *** End of Error *** > > Bye, > Skybuck. > > I would not expect any help with stolen code.
Show quoteHide quote "Skybuck Flying" <spam@hotmail.com> wrote in message news:eh6n7r$qie$1@news3.zwoll1.ov.home.nl... > Here is a piece of code from the filedisk.sys driver: > > case IRP_MJ_DEVICE_CONTROL: > switch (io_stack->Parameters.DeviceIoControl.IoControlCode) > { > case IOCTL_FILE_DISK_OPEN_FILE: > > > SeImpersonateClient(device_extension->security_client_context, NULL); // > *** looks suspicious *** > > irp->IoStatus.Status = FileDiskOpenFile(device_object, > irp); > > PsRevertToSelf(); > > break; > > case IOCTL_FILE_DISK_CLOSE_FILE: > irp->IoStatus.Status = FileDiskCloseFile(device_object, > irp); > break; > > default: > irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; > } > break; > > default: > irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; > } > > Maybe impersonating the thread is detected by windows/iis and causing > problems ? > > Just a guess > > Bye, > Skybuck. > > > "Skybuck Flying" <spam@hotmail.com> wrote in message > news:eh6l52$chi$1@news3.zwoll1.ov.home.nl... >> Hello, >> >> As a programmer I would like to keep all my source code together on a >> FileDiskImage created with the FileDisk tool. >> >> ( http://www.winimage.com/misc/filedisk64.htm ) >> >> However when Internet Information Server tries to read/execute the web >> application a Server Error happens, can this problem be fixed ? >> >> *** Begin of Error *** >> >> Server Error in '/SimpleWebApplicationTest' Application. >> -------------------------------------------------------------------------------- >> >> Server cannot access application directory >> 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist >> or is not accessible because of security settings. >> Description: An unhandled exception occurred during the execution of the >> current web request. Please review the stack trace for more information >> about the error and where it originated in the code. >> >> Exception Details: System.Web.HttpException: Server cannot access >> application directory 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The >> directory does not exist or is not accessible because of security >> settings. >> >> Source Error: >> >> An unhandled exception was generated during the execution of the current >> web request. Information regarding the origin and location of the >> exception can be identified using the exception stack trace below. >> >> Stack Trace: >> >> >> [HttpException (0x80004005): Server cannot access application directory >> 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist >> or is not accessible because of security settings.] >> System.Web.HttpRuntime.EnsureAccessToApplicationDirectory() +72 >> System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +263 >> >> [HttpException (0x80004005): ASP.NET Initialization Error] >> System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +982 >> System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) >> +128 >> >> >> >> >> -------------------------------------------------------------------------------- >> Version Information: Microsoft .NET Framework Version:1.1.4322.2032; >> ASP.NET Version:1.1.4322.2032 >> >> *** End of Error *** >> >> Bye, >> Skybuck. >> >> > > I would not expect any help with stolen code.
Show quoteHide quote "Skybuck Flying" <spam@hotmail.com> wrote in message news:eh6n7r$qie$1@news3.zwoll1.ov.home.nl... > Here is a piece of code from the filedisk.sys driver: > > case IRP_MJ_DEVICE_CONTROL: > switch (io_stack->Parameters.DeviceIoControl.IoControlCode) > { > case IOCTL_FILE_DISK_OPEN_FILE: > > > SeImpersonateClient(device_extension->security_client_context, NULL); // > *** looks suspicious *** > > irp->IoStatus.Status = FileDiskOpenFile(device_object, > irp); > > PsRevertToSelf(); > > break; > > case IOCTL_FILE_DISK_CLOSE_FILE: > irp->IoStatus.Status = FileDiskCloseFile(device_object, > irp); > break; > > default: > irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; > } > break; > > default: > irp->IoStatus.Status = STATUS_DRIVER_INTERNAL_ERROR; > } > > Maybe impersonating the thread is detected by windows/iis and causing > problems ? > > Just a guess > > Bye, > Skybuck. > > > "Skybuck Flying" <spam@hotmail.com> wrote in message > news:eh6l52$chi$1@news3.zwoll1.ov.home.nl... >> Hello, >> >> As a programmer I would like to keep all my source code together on a >> FileDiskImage created with the FileDisk tool. >> >> ( http://www.winimage.com/misc/filedisk64.htm ) >> >> However when Internet Information Server tries to read/execute the web >> application a Server Error happens, can this problem be fixed ? >> >> *** Begin of Error *** >> >> Server Error in '/SimpleWebApplicationTest' Application. >> -------------------------------------------------------------------------------- >> >> Server cannot access application directory >> 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist >> or is not accessible because of security settings. >> Description: An unhandled exception occurred during the execution of the >> current web request. Please review the stack trace for more information >> about the error and where it originated in the code. >> >> Exception Details: System.Web.HttpException: Server cannot access >> application directory 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The >> directory does not exist or is not accessible because of security >> settings. >> >> Source Error: >> >> An unhandled exception was generated during the execution of the current >> web request. Information regarding the origin and location of the >> exception can be identified using the exception stack trace below. >> >> Stack Trace: >> >> >> [HttpException (0x80004005): Server cannot access application directory >> 'Z:\Delphi\Tests\SimpleWebApplicationTest\'. The directory does not exist >> or is not accessible because of security settings.] >> System.Web.HttpRuntime.EnsureAccessToApplicationDirectory() +72 >> System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +263 >> >> [HttpException (0x80004005): ASP.NET Initialization Error] >> System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +982 >> System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) >> +128 >> >> >> >> >> -------------------------------------------------------------------------------- >> Version Information: Microsoft .NET Framework Version:1.1.4322.2032; >> ASP.NET Version:1.1.4322.2032 >> >> *** End of Error *** >> >> Bye, >> Skybuck. >> >> > > How many times to we have to inform the clueless that this is stolen code.
It is copyrighted by Jamey Kirby and StorageCraft. He just got an early version for evaulation and stripped off their copyrights and put it under the GPL. Doing that does not make it GPL, but stolen code. It is not worth the time or money to sue when there is nothing that can be won. There have been many posts by several people including Jamey and Maxim who have said it is STOLEN code. If I come to your home and steal your stuff. Then I take it to a pawnshop. Can the pawnshop owner advertise it and sell it? I hope not. It is worse if the pawnshop owner knew it was stolen or was the thief himself. Yes, we all know where it is located. Most of us know where we can get copies of almost any software package, music, and movies. Are they not 'stolen' and had their copyright owner's rights violated? Show quoteHide quote "Rob Kennedy" <m**@privacy.net> wrote in message news:4poib1Fjhq9fU1@individual.net... > David J. Craig wrote: >> I would not expect any help with stolen code. > > Is it really stolen if you can download it directly from the Web site of > the person who wrote it and it's distributed under the GNU GPL? > > http://www.acc.umu.se/~bosse/ > > -- > Rob > If I come to your home and steal your stuff. Then I take it to a pawnshop. The parallel is a bit another - Joe gave some item to Bob for Bob's personal> Can the pawnshop owner advertise it and sell it? I hope not. It is worse > if the pawnshop owner knew it was stolen or was the thief himself. use, and Bob sold it. Not a criminal stealing, but a civil law delict for sure. -- Maxim Shatskih, Windows DDK MVP StorageCraft Corporation ma***@storagecraft.com http://www.storagecraft.com David J. Craig wrote:
> I would not expect any help with stolen code. Is it really stolen if you can download it directly from the Web site of the person who wrote it and it's distributed under the GNU GPL? http://www.acc.umu.se/~bosse/ -- Rob David J. Craig wrote:
> I would not expect any help with stolen code. Is it really stolen if you can download it directly from the Web site of the person who wrote it and it's distributed under the GNU GPL? http://www.acc.umu.se/~bosse/ -- Rob How many times to we have to inform the clueless that this is stolen code.
It is copyrighted by Jamey Kirby and StorageCraft. He just got an early version for evaulation and stripped off their copyrights and put it under the GPL. Doing that does not make it GPL, but stolen code. It is not worth the time or money to sue when there is nothing that can be won. There have been many posts by several people including Jamey and Maxim who have said it is STOLEN code. If I come to your home and steal your stuff. Then I take it to a pawnshop. Can the pawnshop owner advertise it and sell it? I hope not. It is worse if the pawnshop owner knew it was stolen or was the thief himself. Yes, we all know where it is located. Most of us know where we can get copies of almost any software package, music, and movies. Are they not 'stolen' and had their copyright owner's rights violated? Show quoteHide quote "Rob Kennedy" <m**@privacy.net> wrote in message news:4poib1Fjhq9fU1@individual.net... > David J. Craig wrote: >> I would not expect any help with stolen code. > > Is it really stolen if you can download it directly from the Web site of > the person who wrote it and it's distributed under the GNU GPL? > > http://www.acc.umu.se/~bosse/ > > -- > Rob How many times to we have to inform the clueless that this is stolen code.
It is copyrighted by Jamey Kirby and StorageCraft. He just got an early version for evaulation and stripped off their copyrights and put it under the GPL. Doing that does not make it GPL, but stolen code. It is not worth the time or money to sue when there is nothing that can be won. There have been many posts by several people including Jamey and Maxim who have said it is STOLEN code. If I come to your home and steal your stuff. Then I take it to a pawnshop. Can the pawnshop owner advertise it and sell it? I hope not. It is worse if the pawnshop owner knew it was stolen or was the thief himself. Yes, we all know where it is located. Most of us know where we can get copies of almost any software package, music, and movies. Are they not 'stolen' and had their copyright owner's rights violated? Show quoteHide quote "Rob Kennedy" <m**@privacy.net> wrote in message news:4poib1Fjhq9fU1@individual.net... > David J. Craig wrote: >> I would not expect any help with stolen code. > > Is it really stolen if you can download it directly from the Web site of > the person who wrote it and it's distributed under the GNU GPL? > > http://www.acc.umu.se/~bosse/ > > -- > Rob > If I come to your home and steal your stuff. Then I take it to a pawnshop. The parallel is a bit another - Joe gave some item to Bob for Bob's personal> Can the pawnshop owner advertise it and sell it? I hope not. It is worse > if the pawnshop owner knew it was stolen or was the thief himself. use, and Bob sold it. Not a criminal stealing, but a civil law delict for sure. -- Maxim Shatskih, Windows DDK MVP StorageCraft Corporation ma***@storagecraft.com http://www.storagecraft.com > If I come to your home and steal your stuff. Then I take it to a pawnshop. The parallel is a bit another - Joe gave some item to Bob for Bob's personal> Can the pawnshop owner advertise it and sell it? I hope not. It is worse > if the pawnshop owner knew it was stolen or was the thief himself. use, and Bob sold it. Not a criminal stealing, but a civil law delict for sure. -- Maxim Shatskih, Windows DDK MVP StorageCraft Corporation ma***@storagecraft.com http://www.storagecraft.com David J. Craig wrote:
> How many times to we have to inform the clueless that this is stolen code. Presumably just once. Then they're not clueless anymore. That doesn't mean there aren't still _other_ clueless people you haven't informed yet. You seem exasperated, and I'm sorry I contributed to that. I'll remember this next time I'm tempted to reply to a cross-posted message. Have a nice day. -- Rob David J. Craig wrote:
> How many times to we have to inform the clueless that this is stolen code. Presumably just once. Then they're not clueless anymore. That doesn't mean there aren't still _other_ clueless people you haven't informed yet. You seem exasperated, and I'm sorry I contributed to that. I'll remember this next time I'm tempted to reply to a cross-posted message. Have a nice day. -- Rob David J. Craig wrote:
> How many times to we have to inform the clueless that this is stolen code. Presumably just once. Then they're not clueless anymore. That doesn't mean there aren't still _other_ clueless people you haven't informed yet. You seem exasperated, and I'm sorry I contributed to that. I'll remember this next time I'm tempted to reply to a cross-posted message. Have a nice day. -- Rob > Is it really stolen if you can download it directly from the Web site of He did not wrote it. Jamey Kirby wrote it and handled to Bo Branten "for his> the person who wrote it and it's distributed under the GNU GPL? personal use". Bo, in turn, distributed the code under GPL without Jamey's permission. -- Maxim Shatskih, Windows DDK MVP StorageCraft Corporation ma***@storagecraft.com http://www.storagecraft.com > Is it really stolen if you can download it directly from the Web site of He did not wrote it. Jamey Kirby wrote it and handled to Bo Branten "for his> the person who wrote it and it's distributed under the GNU GPL? personal use". Bo, in turn, distributed the code under GPL without Jamey's permission. -- Maxim Shatskih, Windows DDK MVP StorageCraft Corporation ma***@storagecraft.com http://www.storagecraft.com > Is it really stolen if you can download it directly from the Web site of He did not wrote it. Jamey Kirby wrote it and handled to Bo Branten "for his> the person who wrote it and it's distributed under the GNU GPL? personal use". Bo, in turn, distributed the code under GPL without Jamey's permission. -- Maxim Shatskih, Windows DDK MVP StorageCraft Corporation ma***@storagecraft.com http://www.storagecraft.com You have already seen the story of FileDisk from previous posters. Bosse's
other code is just as suspect, years ago I posted a comment about the Microsoft IFS kit, and recieved multiple requests from Bosse to provide him with the code to add to his GNU ntifs.h. If you compare that file with early ntddk.h versions you will find large blocks that are the same including typos in the comments! This guy is a thief, and if open source was professional then they would go after him, the same way they go after people who rip off GPL code for commercial products. -- Show quoteHide quoteDon Burn (MVP, Windows DDK) Windows 2k/XP/2k3 Filesystem and Driver Consulting http://www.windrvr.com Remove StopSpam from the email to reply "Rob Kennedy" <m**@privacy.net> wrote in message news:4poib1Fjhq9fU1@individual.net... > David J. Craig wrote: >> I would not expect any help with stolen code. > > Is it really stolen if you can download it directly from the Web site of > the person who wrote it and it's distributed under the GNU GPL? > > http://www.acc.umu.se/~bosse/ > > -- > Rob Ok,
Let's get back on topic. Is this a file disk image driver bug ? What could be the cause for windows xp 64 bit not being able to read the file ??? Other applications like windows explorer etc work just fine with file disk images. It seems security/filediskimage related. Bye, Skybuck. You have already seen the story of FileDisk from previous posters. Bosse's
other code is just as suspect, years ago I posted a comment about the Microsoft IFS kit, and recieved multiple requests from Bosse to provide him with the code to add to his GNU ntifs.h. If you compare that file with early ntddk.h versions you will find large blocks that are the same including typos in the comments! This guy is a thief, and if open source was professional then they would go after him, the same way they go after people who rip off GPL code for commercial products. -- Show quoteHide quoteDon Burn (MVP, Windows DDK) Windows 2k/XP/2k3 Filesystem and Driver Consulting http://www.windrvr.com Remove StopSpam from the email to reply "Rob Kennedy" <m**@privacy.net> wrote in message news:4poib1Fjhq9fU1@individual.net... > David J. Craig wrote: >> I would not expect any help with stolen code. > > Is it really stolen if you can download it directly from the Web site of > the person who wrote it and it's distributed under the GNU GPL? > > http://www.acc.umu.se/~bosse/ > > -- > Rob You have already seen the story of FileDisk from previous posters. Bosse's
other code is just as suspect, years ago I posted a comment about the Microsoft IFS kit, and recieved multiple requests from Bosse to provide him with the code to add to his GNU ntifs.h. If you compare that file with early ntddk.h versions you will find large blocks that are the same including typos in the comments! This guy is a thief, and if open source was professional then they would go after him, the same way they go after people who rip off GPL code for commercial products. -- Show quoteHide quoteDon Burn (MVP, Windows DDK) Windows 2k/XP/2k3 Filesystem and Driver Consulting http://www.windrvr.com Remove StopSpam from the email to reply "Rob Kennedy" <m**@privacy.net> wrote in message news:4poib1Fjhq9fU1@individual.net... > David J. Craig wrote: >> I would not expect any help with stolen code. > > Is it really stolen if you can download it directly from the Web site of > the person who wrote it and it's distributed under the GNU GPL? > > http://www.acc.umu.se/~bosse/ > > -- > Rob Ok,
Let's get back on topic. Is this a file disk image driver bug ? What could be the cause for windows xp 64 bit not being able to read the file ??? Other applications like windows explorer etc work just fine with file disk images. It seems security/filediskimage related. Bye, Skybuck. Ok,
Let's get back on topic. Is this a file disk image driver bug ? What could be the cause for windows xp 64 bit not being able to read the file ??? Other applications like windows explorer etc work just fine with file disk images. It seems security/filediskimage related. Bye, Skybuck.
Switching from http to https
Is posting from http to https secure? Multiple websites in one IIS with Integrated Windows Authentication Web site can't be browsed when logging out from IISv6.0 Server URL Authentication IIS 6.0 Problem with Impersonation / Delegation How do you get rid of IIS Anonymous Event Logs? Cannot get logon prompted on web page on one machine firefox 1.5 & iis6.0 SSL Problem |
|||||||||||||||||||||||