Questions tagged [fritzbox]

Questions about the AVM FRITZ!Box router and it's software apis

The AVM Fritz!Box is a popular router from germany:

https://avm.de/produkte/fritzbox/

APIs

The Fritz!Box has several APIs for developers see

https://avm.de/service/schnittstellen/

e.g.

API implementations can be found on github e.g.

Go

  1. https://github.com/bpicode/fritzctl

##Java

  1. https://github.com/BITPlan/com.bitplan.fritzbox
  2. https://github.com/ISchwarz23/FritzBox-API
  3. https://github.com/kaklakariada/fritzbox-java-api

Node.js

  1. https://github.com/andig/fritzapi

PHP

  1. https://github.com/carlos22/fritzbox_api_php

Python

  1. https://github.com/DerMitch/fritzbox-smarthome
  2. https://github.com/kbr/fritzconnection

Shell

  1. https://github.com/Tscherno/Fritzbox.sh
24 questions
4
votes
2 answers

Different MD5 outputs in shell and script

This is driving me crazy, im trying to do some MD5 calculation based on the fritzbox SPEC for logging in. Basically you have to convert a challenge and the password into UTF-16LE and then hash it by md5, then concat…
Figedi
  • 383
  • 1
  • 2
  • 11
3
votes
1 answer

how to send a call_action in fritzconnect

everybody, I use Python3 and fritzconnection to connect to my Fritzbox. Getting information works great, but there are also some commands where you have to send information to get the Fritzbox to respond specifically. How do I do that? Here is what…
Airfox
  • 51
  • 1
  • 5
2
votes
2 answers

Sending a SOAP request to FritzBox

I'm trying to send a SOAP request to a FritzBox (WLAN router) using C#. Currently I'm assembling the XML SOAP request by hand, since the server does not offer a WSDL file. This is how I create the web request that I attach my XML to: HttpWebRequest…
Boris
  • 8,551
  • 25
  • 67
  • 120
2
votes
1 answer

Is it possible to have a Git repository on a local router with USB drive?

I have a router (AVM Fritzbox) with a USB drive connected to it. I can access the drive via a network path from my computers. I only have access to the web interface of the router and the filesystem of the drive. No root or ssh access (I don't want…
Foo Bar
  • 1,764
  • 4
  • 24
  • 43
1
vote
0 answers

FritzBox Config Export: cURL to Invoke-Webrequest

I want to export the config from my Fritz!Box but couldn't find any PowerShell script for that. So I'm trying to convert the curl statement I've found but it doesn't work: curl -s -k -o $OUT --form sid=$SID --form…
1
vote
1 answer

Using FritzConnection to change WIFI password

I'd like to change a the password of the guest WIFI on my FritzBox router. For connecting to the FritzBox I use the FritzConnection lib in Python. In general FritzConnection works: I am able to read information from the FritzBox and I am also able…
Solderdot
  • 11
  • 2
1
vote
0 answers

How to set up autologin with Fritzbox?

Login Page from Fritz.box

Melden…

1
vote
0 answers

.Net HTTPWebRequest truncates URL

Maybe someone out there who can help me: I'm coding (just for fun) with the TR064 Interface to control AVM FritzBox Routers. I try to receive the callist from the Box. When using the Browser, it works. In my .NET-code it doesn't work. I use…
Peter
  • 11
  • 1
1
vote
0 answers

Python socket server only works sometimes

I am new to python coding and tried to create a simple python socket server. I coded a client.py and a server.py on my laptop and it seems to work (It does what it is supposed to do....), but if i try to run the server on my laptop and the client on…
1
vote
0 answers

Get Fritz box incoming caller id using Java

Need to get incoming caller id through 'Fritz Box' enabled router using java. should to be real-time caller id gathering. This will be from any PC connected to the router via LAN. When call coming to the phone, then i need to get the caller…
1
vote
2 answers

connect() - IP blocked, how to connect using hostname?

when I try to connect to a webserver, my "FritzBox" (residential gateway device) is configured to block all connections that connect directly to an IP, not a host name. However, the connect() function only lets me connect using an IP address. How…
KungPhoo
  • 516
  • 4
  • 18
1
vote
1 answer

Java Netty UDT rendezvous does not work

I'm testing a modified version of this example using netty + udt + rendezvous: http://netty.io/4.0/xref/io/netty/example/udt/echo/rendezvous/package-summary.html I've started an instance on both my server and my local machine where the "self"-host…
Kr0e
  • 2,149
  • 2
  • 24
  • 40
1
vote
1 answer

Software that listens to defined port and fires a defined action

I want to setup a call monitor for showing incoming calls. My router (fritzbox) has a function, that sends for every event (incoming-, outgoing call...) a telnet stream. I can only see it via putty. I'm a webcoder, and have no idea how to grab this…
AppGeer
  • 725
  • 1
  • 11
  • 27
0
votes
0 answers

Hidden network broadcasted from FRITZBOX router

I noticed that my fritzbox router broadcast a hidden network like you can see in the attached image. What is this for? Also noticed that is a WEP OPEN.
0
votes
0 answers

http challenge response POST with curl

I have written a small c++ program to connect to my router (avm Fritzbox 7590) using a challenge response method. For this I use openssl (SHA256), curl(GET & POST) and tinyXML (parsing the response). I have a member function "query_challenge()" to…
1
2