Git Product home page Git Product logo

Comments (5)

vulnersCom avatar vulnersCom commented on August 21, 2024

Fixed in the last commit.
Please, check.

from getsploit.

py4h0n avatar py4h0n commented on August 21, 2024

Still have the problem.
python 2.7.* in-bulit sqlite3 module, not have enabled FTS4 feature
MY TEST:

Python 2.7.10 (default, Feb 7 2017, 00:08:15)
Type "copyright", "credits" or "license" for more information.

IPython 4.2.0 -- An enhanced Interactive Python.
? -> Introduction and overview of IPython's features.
%quickref -> Quick reference.
help -> Python's own help system.
object? -> Details about 'object', use 'object??' for extra details.

In [1]: import sqlite3

In [2]: con = sqlite3.connect('getsploit.db')

In [3]: cur = con.cursor()

In [4]: for (v, ) in cur.execute('pragma compile_options'):
...: print v
...:
COMPILER=clang-8.0.0
ENABLE_API_ARMOR
ENABLE_FTS3
ENABLE_FTS3_PARENTHESIS
ENABLE_JSON1
ENABLE_LOCKING_STYLE=1
ENABLE_RTREE
ENABLE_UPDATE_DELETE_LIMIT
HAS_CODEC
HAVE_ISNAN
MAX_MMAP_SIZE=1073741824
OMIT_AUTORESET
OMIT_BUILTIN_TEST
OMIT_LOAD_EXTENSION
SYSTEM_MALLOC
THREADSAFE=2

maybe for python 2.7.*, you should change you code like this:
for (val,) in cursor.execute('pragma compile_options'):
if 'FTS4' in val:
==>
for (val,) in cursor.execute('pragma compile_options'):
if 'FTS3' in val:

It works for me~

from getsploit.

vulnersCom avatar vulnersCom commented on August 21, 2024

Wow.
It looks like back-compatibility from FTS4 to FTS3?
So with
if 'FTS3' in val
fix everything worked correctly with -l option?
./getsploit.py -l wordpress

from getsploit.

py4h0n avatar py4h0n commented on August 21, 2024

http://www.sqlite.org/fts3.html
FTS3 and FTS4 are nearly identical. They share most of their code in common, and their interfaces are the same.

yes, for me it's ok
getsploit git:(master) ✗ ./getsploit.py -l wordpress
Total found exploits: 5711
Web-search URL: https://vulners.com/search?query=wordpress
...
...

from getsploit.

vulnersCom avatar vulnersCom commented on August 21, 2024

Got it.
Fixed.

from getsploit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.