Questions tagged [import-table]

18 questions
9
votes
1 answer

Where is Import Table in ELF file?

I found ".dynsym" in String Table, got index. Then I found section with sh_name = index && sh_type = SHT_DYNSYM. So I got sh_offset = 464 and sh_size = 64. But you can see in the attached picture, that on the offset 464 there are only zeros. I…
Qwerty
  • 153
  • 1
  • 9
3
votes
1 answer

What is Structure of IMAGE_THUNK_DATA?

Can anyone explain the structure of IMAGE_THUNK_DATA? I just know it has 4 elements, but I want the explanation of these elements.
A.bee
  • 502
  • 5
  • 16
1
vote
2 answers

How can I resolve the forwarded API from the IAT on PE?

Hi I'm trying to make a Import table builder in python script just like MacT's Import Reconstructor. But I have a trouble to find out the method to get an original API information from the forwarded API. For instance, I got a…
Vanz
  • 13
  • 4
1
vote
1 answer

Invalid API's even though right RVA and size

I am learning some reverse engineering and stumbled upon a problem. I have followed the tutorial that is included inside the unpackMe package but I sense that there is a problem because of me running windows 10. The problem is that the API's found…
Jozo
  • 15
  • 3
1
vote
1 answer

How we can get Hint in IMAGE_IMPORT_BY_NAME STRUCT in PE file?

I am trying to write python script to extract information from import table. I managed to acquire function names imported by each dll. However I am not sure how I could access Hint. Any suggestion?
Likak
  • 373
  • 1
  • 5
  • 19
1
vote
1 answer

Why does dependency walker show missing dlls?

I have a dll file which when I try to load using LoadLibrary works fine. I am able to call the functions in the loaded dll successfully. However when I try to use dependency walker on this dll it shows me a bunch of missing dll's and some symbols…
ashish g
  • 429
  • 1
  • 7
  • 16
1
vote
3 answers

SQL: Invalid column names

I am trying to upload a table, and it is giving me the error message: "The following new table has invalid names: ". It did not point out which one is invalid. All my column names are words. Not sure what rules can I possibly violate. Below is a…
Q-ximi
  • 941
  • 3
  • 14
  • 21
1
vote
1 answer

How to modify the import table of an assembly program compiled by flatassembler

I am testing an assembly program that is compiled by flatassembler, and it needs to modify the import table, so when I run objdump I can see which external functions the program is trying to call. So, I start off with: format PE GUI section '.flat'…
James Black
  • 41,583
  • 10
  • 86
  • 166
0
votes
1 answer

R - Importing and formatting mutiple tables from various urls

I am a newbie in R so probably there is already some answer to the following question but I haven't find a solution matching the issue I am facing. I am trying to get tables from a number of webpages. They shold be around 5200. I have imported one…
Il Forna
  • 23
  • 5
0
votes
1 answer

googlesheets can't import expandable table

I can't import the second table of this site on my google sheets: https://www.wsj.com/market-data/quotes/AMZN/financials/annual/balance-sheet (the table that show when you click on "Liabilities & Shareholders' Equity"). This is my…
0
votes
0 answers

MySQL shell multi threaded load data infile

I have a csv file (path: D:\Column_2.csv) and when run the below MySQL Shell command, appears an error message: Util.importTable: Cannot open file 'D:/Column_2.csv' (Runtime Error) (Java Script) util.importTable("D:/Column_2.csv", {schema: "data",…
JOAO12
  • 45
  • 7
0
votes
1 answer

How to skip/dummy columns in mysqlsh importTable util?

I want to explicit list the columns in importTable for LOAD DATA with mysqlsh: https://dev.mysql.com/doc/mysql-shell/8.0/en/mysql-shell-utilities-parallel-table.html import.js: util.importTable("sample.csv", {schema: "myschema", table: "mytable", …
membersound
  • 81,582
  • 193
  • 585
  • 1,120
0
votes
2 answers

How to optimize the performance of data pulling from a very large text file in excel via VBA

I want to get data regarding the value against a key cell value in a row. The problem is that the file is really big, I have a .txt file that has around 54000 rows and 14 columns so as such the text file itself is of 20 mb, and over that I need to…
pranjalgoku
  • 39
  • 10
0
votes
0 answers

What is the Derby SQL command to load a tab delimited text file into a blank table?

What is the Derby SQL command to load a tab delimited text file into a blank table? Text file is tab delimited (column) I am working in Eclipse's DATA SOURCE EXPLORER with an embedded Derby Database I can load the data (this works as intended)…
JakeTM
  • 1
  • 3
0
votes
2 answers

Crashes after Injecting std functions in a process

i am currently trying out PE injection and noticed that as soon as i use stuff like std::cout or std::string my target process which i injected in crashes. Messageboxes or even printf() works fine. The code compiles without an error and i read about…
1
2