Questions tagged [mssql]
The mssql tag has no summary.
7 questions
1
vote
0
answers
118
views
How do I reverse engineer a file uploading api?
The API is pretty old and is written in C#, I tried debugging the API calls with mitmproxy.
This is the successful API call (manually uploading file)
but when I tried curling it, it gave me this error ...
1
vote
1
answer
61
views
Find schema and info of MS SQL Server to which I have access to
I have access to an MS SQL Server DB and I'm able to run queries on the databases.
But the since the database is too big, with multiple tables and each table having many columns (whose names aren't ...
1
vote
0
answers
59
views
Is it possible to know what changed on a mssql database? [closed]
I'm trying to reverse engineer the mssql database behind an ERP.
I was planning to export the database as a sql file before and after I do a modification in the ERP to be able to diff the files. But ...
2
votes
3
answers
340
views
Proprietary MS SQL server based file format
I'm trying to reverse engineer an application that uses SQL server but somehow hides the database files inside its own proprietary file format. What I'm aiming to do is to write my own app that can ...
5
votes
1
answer
851
views
SQL Server not downloading symbols from the symbol server, even though SymInitialize has the symserver in its path
EDIT Clarified, I meant the extended exent ringbugger stacktraces described by Jonathan Kehayias.
I recently discovered it was possible to get link.exe, dumpbin.exe, etc to download symbols from a ...
18
votes
4
answers
6k
views
Server-side Query interception with MS SQL Server
I'm researching into intercepting queries that arrive at the SQL Server 2008 process.
SQLOS architecture is divided in the following system DLLs:
sqlmin.dll: Storage, replication, security features,...
7
votes
2
answers
474
views
Viewing MSSQL transactions between closed-source application and server
I am reversing a closed-source legacy application that uses Microsoft SQL Server (2005) and I would like to find out precisely what queries are being executed in the background.
I understand that it ...