Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to strip out the load scripts/hidden scripts for a qlikview qvw

Hi,

We have a old qlikview qvw design by not so great 'qlik' person developer.

When open it says 'Access denied to this QLIKView document'

So I am trying to find out what file.  Or if it has hidden scripts.  To dump out the scripts to

try and reverse engineer this.

Do you have a command line tool to strip out the scripts so it can be debugged why this message appears.

Possible it has HARD-CODED a file path which no longer exists.

Thanks

Regards

Justin

7 Replies
Anil_Babu_Samineni

Usually, When you talk about old and open - May be there has some security in that application. As far i know, That you can not open that restrict by Qlik.

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

what a poor design..in qlikview.

jonathandienst
Partner - Champion III
Partner - Champion III

Have you tried opening it without data? From the QV desktop start page, right click the file name in the Recents list and try "Open 'file' Without Data".

If the file is not in the recent list, create a text file with the line

"C:\Program Files\QlikView\qv.exe" /nodata %1


Store it on your desktop with a .bat extension. Then drag the file and drop it on the bat file.

Or, open a run command and enter

"C:\Program Files\QlikView\qv.exe" /nodata "your filepath and name"

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
marcus_sommer

If there is any section access implemented it does what it should by deny the access for unauthorized persons. If there is no query for an user and a password the restrictions will probaly base on the NTNAME and/or your licence and/or your domain.

Within the xml-header of the qvw you might get some valuable hints from where the section access come from:

<LineageInfo>

   <Discriminator>\\YourServer\d\...\sectionaccess\sectionaccessrules.xlsx</Discriminator>

and which users are included:

<SectionAccessNames>

        <String>DOMAIN\USER1</String>

and with this knowledge and something from here: Bypassing QlikView Section Access – Infinity Insight Blog you might be lucky to get access again to this application.

- Marcus

Anonymous
Not applicable
Author

Thanks Jonathan

Tried that sill same error 'Access denied to this QlikView document';

Anonymous
Not applicable
Author

Thanks Marcus,

How would one get to the xml-header/extract xml-header from a binary file.

marcus_sommer

Just opening it within an editor like notepad++ and using CTRL + F with "sectionaccess" to find the mentioned xml-parts at the bottom of the file.

- Marcus